Package net.officefloor.compile.section
Interface SectionObjectType
-
- All Superinterfaces:
AnnotatedType
- All Known Implementing Classes:
SectionObjectTypeImpl
public interface SectionObjectType extends AnnotatedType
- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetObjectType()java.lang.StringgetSectionObjectName()Obtains the name of thisSectionObjectType.java.lang.StringgetTypeQualifier()Obtains the qualifier on the type.-
Methods inherited from interface net.officefloor.compile.type.AnnotatedType
getAnnotation, getAnnotations, getAnnotations
-
-
-
-
Method Detail
-
getSectionObjectName
java.lang.String getSectionObjectName()
Obtains the name of thisSectionObjectType.- Returns:
- Name of this
SectionObjectType.
-
getObjectType
java.lang.String getObjectType()
Obtains the fully qualified
Classname of theObjecttype for thisSectionObjectType.The name is returned rather than the actual
Classto enable theSectionTypeto be obtained should theClassnot be available to theClassLoader.- Returns:
- Fully qualified
Classname of theObjecttype.
-
getTypeQualifier
java.lang.String getTypeQualifier()
Obtains the qualifier on the type.
This is to enable qualifying the type of dependency required.
- Returns:
- Qualifier on the type. May be
nullif not qualifying the type.
-
-