Interface InterfaceModel
-
- All Superinterfaces:
AnnotatedElement
,ExtensibleType<InterfaceModel>
,Type
- All Known Subinterfaces:
AnnotationType
- All Known Implementing Classes:
AnnotationTypeImpl
,InterfaceModelImpl
public interface InterfaceModel extends ExtensibleType<InterfaceModel>
Represents an interface declaration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<ClassModel>
allImplementations()
Returns an unmodifiable collection of all classes implementing this interface.java.util.Collection<ClassModel>
implementations()
Returns an unmodifiable collection of classes directly implementing this interface-
Methods inherited from interface org.glassfish.hk2.classmodel.reflect.AnnotatedElement
getAnnotation, getAnnotations, getName, shortDesc
-
Methods inherited from interface org.glassfish.hk2.classmodel.reflect.ExtensibleType
allSubTypes, getInterfaces, getParameterizedInterfaces, getParent, getStaticFields, subTypes
-
Methods inherited from interface org.glassfish.hk2.classmodel.reflect.Type
getDefiningURIs, getMethods, getReferences, wasDefinedIn
-
-
-
-
Method Detail
-
allImplementations
java.util.Collection<ClassModel> allImplementations()
Returns an unmodifiable collection of all classes implementing this interface.- Returns:
- list of classes directly implementing this interface
-
implementations
java.util.Collection<ClassModel> implementations()
Returns an unmodifiable collection of classes directly implementing this interface- Returns:
- list of classes implementing this interface
-
-