Package net.officefloor.compile.section
Interface SectionInputType
-
- All Superinterfaces:
AnnotatedType
- All Known Implementing Classes:
SectionInputTypeImpl
public interface SectionInputType extends AnnotatedType
Type definition
of an input for aSectionType
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getParameterType()
Obtains the fully qualifiedClass
name of the parameter type for thisSectionInputType
.java.lang.String
getSectionInputName()
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
Class
name of the parameter type for thisSectionInputType
.The name is returned rather than the actual
Class
to enable theSectionType
to be obtained should theClass
not be available to theClassLoader
.- Returns:
- Fully qualified
Class
name of the parameter type.
-
-