|
In case it helps, I found that a qualifier defined like this:
@Documented
@Qualifier
@Retention(RUNTIME)
@Target({ METHOD, FIELD, PARAMETER, TYPE })
public @interface Loading {
}
...works fine. Section 2.3.2 does say, though:
A qualifier type may define annotation members.
|