Annotation Type Subjects
-
@Target(TYPE) @Retention(RUNTIME) public @interface Subjects
Used to tagIClassSpecificNameResolver
andIRequestDetailsResolver
resolvers with the names of the classes that they handle. Can be used as follows:@Subjects({"com.example.class1", "com.example.Class2"})
or@Subjects("com.example.class1")
SeeSubject
for a single class name, though this annotation can also be used for a single class name.Experimental: can also be used to tag
IQuery
queries. These queries are only offered in the drop-down menu from the task bar when one of the classes named byvalue()
is present in the snapshot. They are also not offered in the pop-up context menu if the objects selected do not include at least one object of the types named byvalue()
.
-
-
Element Detail
-
value
String[] value
-
-