Uses of Interface
org.glassfish.hk2.api.ClassAnalyzer
-
Packages that use ClassAnalyzer Package Description org.jvnet.hk2.internal -
-
Uses of ClassAnalyzer in org.jvnet.hk2.internal
Classes in org.jvnet.hk2.internal that implement ClassAnalyzer Modifier and Type Class Description class
DefaultClassAnalyzer
this is the default implementation of the ClassAnalyzerFields in org.jvnet.hk2.internal with type parameters of type ClassAnalyzer Modifier and Type Field Description private java.util.HashMap<java.lang.String,ClassAnalyzer>
ServiceLocatorImpl. classAnalyzers
Methods in org.jvnet.hk2.internal that return ClassAnalyzer Modifier and Type Method Description (package private) ClassAnalyzer
ServiceLocatorImpl. getAnalyzer(java.lang.String name, Collector collector)
static ClassAnalyzer
Utilities. getClassAnalyzer(ServiceLocatorImpl sli, java.lang.String analyzerName, Collector errorCollector)
Returns the class analyzer with the given nameMethods in org.jvnet.hk2.internal with parameters of type ClassAnalyzer Modifier and Type Method Description static <T> java.lang.reflect.Constructor<T>
Utilities. getConstructor(java.lang.Class<T> implClass, ClassAnalyzer analyzer, Collector collector)
Gets the constructor given the implClass and analyzer.static java.util.Set<java.lang.reflect.Field>
Utilities. getInitFields(java.lang.Class<?> implClass, ClassAnalyzer analyzer, Collector collector)
Gets the initializer fields from the given class and analyzer.static java.util.Set<java.lang.reflect.Method>
Utilities. getInitMethods(java.lang.Class<?> implClass, ClassAnalyzer analyzer, Collector collector)
Gets the initializer methods from the given class and analyzer.static java.lang.reflect.Method
Utilities. getPostConstruct(java.lang.Class<?> implClass, ClassAnalyzer analyzer, Collector collector)
Gets the post construct from the analyzer, checking outputstatic java.lang.reflect.Method
Utilities. getPreDestroy(java.lang.Class<?> implClass, ClassAnalyzer analyzer, Collector collector)
Gets the preDestroy from the analyzer, checking output
-