Package net.officefloor.compile.section
Interface OfficeSectionOutputType
-
- All Superinterfaces:
AnnotatedType
- All Known Implementing Classes:
OfficeSectionOutputTypeImpl
public interface OfficeSectionOutputType extends AnnotatedType
Type definition
of theOfficeSectionOutput
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getArgumentType()
Obtains the argument type from thisOfficeSectionOutput
.java.lang.String
getOfficeSectionOutputName()
Obtains the name of thisOfficeSectionOutput
.boolean
isEscalationOnly()
Indicates if thisOfficeSectionOutput
is escalation only.-
Methods inherited from interface net.officefloor.compile.type.AnnotatedType
getAnnotation, getAnnotations, getAnnotations
-
-
-
-
Method Detail
-
getOfficeSectionOutputName
java.lang.String getOfficeSectionOutputName()
Obtains the name of thisOfficeSectionOutput
.- Returns:
- Name of this
OfficeSectionOutput
.
-
getArgumentType
java.lang.String getArgumentType()
Obtains the argument type from thisOfficeSectionOutput
.- Returns:
- Argument type.
-
isEscalationOnly
boolean isEscalationOnly()
Indicates if thisOfficeSectionOutput
is escalation only. In other words it can be handled by anOffice
EscalationProcedure
.- Returns:
true
if escalation only.
-
-