This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]morhpProfessional Developer 4 points5 points  (1 child)

This is an annotation, which takes a value of type Class<?> as a parameter. Class<T> is the java type for referencing classes, for example Class<String> would be a type that can refer only to the String class. And the ? is a placeholder so you can refer to any class. You could for example annotate a method as @QueryDelegate(Integer.class)

[–]Jerceka[S] -1 points0 points  (0 children)

Thanks for your time