Interface FieldModel
-
- All Superinterfaces:
AnnotatedElement
,Member
- All Known Implementing Classes:
FieldModelImpl
public interface FieldModel extends Member, AnnotatedElement
Model that represent the field of a class
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.glassfish.hk2.classmodel.reflect.Member
Member.Type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExtensibleType
getDeclaringType()
Returns the declaring type of this field, which is a class.ExtensibleType
getType()
Returns the declared type of the field-
Methods inherited from interface org.glassfish.hk2.classmodel.reflect.AnnotatedElement
getAnnotation, getAnnotations, getName, shortDesc
-
Methods inherited from interface org.glassfish.hk2.classmodel.reflect.Member
getMemberType
-
-
-
-
Method Detail
-
getType
ExtensibleType getType()
Returns the declared type of the field- Returns:
- the field type
-
getDeclaringType
ExtensibleType getDeclaringType()
Returns the declaring type of this field, which is a class.- Specified by:
getDeclaringType
in interfaceMember
- Returns:
- the field declaring class.
-
-