Creates a new instance of AbstractAnnotationScanner
Invoked so the concrete subclass can populate the annotations set. Concrete implementations of this method should add to the set one or more Strings corresponding to the annotations of interest.paramannotationsSet the Set object to be populated
Concrete implementations of this method should add to the set one or more Strings corresponding to the annotations of interest.
Test if the passed constant pool string is a reference to a Type.TYPE annotation of a J2EE componentStringthe constant pool info stringreturntrue if it is an annotation reference of interest to this scanner if (annotations==null) { synchronized(this) { if (annotations == null) { annotations = new HashSet(); init(annotations); } } } return annotations.contains(value);
if (annotations==null) { synchronized(this) { if (annotations == null) { annotations = new HashSet(); init(annotations); } } } return annotations.contains(value);