Package net.officefloor.compile.section
Interface SectionInputType
-
- All Superinterfaces:
AnnotatedType
- All Known Implementing Classes:
SectionInputTypeImpl
public interface SectionInputType extends AnnotatedType
Type definitionof an input for aSectionType.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetParameterType()Obtains the fully qualifiedClassname of the parameter type for thisSectionInputType.java.lang.StringgetSectionInputName()Obtains the name of thisSectionInputType.-
Methods inherited from interface net.officefloor.compile.type.AnnotatedType
getAnnotation, getAnnotations, getAnnotations
-
-
-
-
Method Detail
-
getSectionInputName
java.lang.String getSectionInputName()
Obtains the name of thisSectionInputType.- Returns:
- Name of this
SectionInputType.
-
getParameterType
java.lang.String getParameterType()
Obtains the fully qualified
Classname of the parameter type for thisSectionInputType.The name is returned rather than the actual
Classto enable theSectionTypeto be obtained should theClassnot be available to theClassLoader.- Returns:
- Fully qualified
Classname of the parameter type.
-
-