Interface SubSection
-
- All Superinterfaces:
PropertyConfigurable
- All Known Subinterfaces:
SectionNode
- All Known Implementing Classes:
SectionNodeImpl
public interface SubSection extends PropertyConfigurable
SubSection
of anSectionNode
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SubSectionInput
getSubSectionInput(java.lang.String inputName)
Obtains theSubSectionInput
.java.lang.String
getSubSectionName()
Obtains the name of thisSubSection
.SubSectionObject
getSubSectionObject(java.lang.String objectName)
Obtains theSubSectionObject
.SubSectionOutput
getSubSectionOutput(java.lang.String outputName)
Obtains theSubSectionOutput
.-
Methods inherited from interface net.officefloor.compile.properties.PropertyConfigurable
addProperty
-
-
-
-
Method Detail
-
getSubSectionName
java.lang.String getSubSectionName()
Obtains the name of thisSubSection
.- Returns:
- Name of this
SubSection
.
-
getSubSectionInput
SubSectionInput getSubSectionInput(java.lang.String inputName)
Obtains theSubSectionInput
.- Parameters:
inputName
- Name of theSubSectionInput
to obtain.- Returns:
SubSectionInput
.
-
getSubSectionOutput
SubSectionOutput getSubSectionOutput(java.lang.String outputName)
Obtains theSubSectionOutput
.- Parameters:
outputName
- Name of theSubSectionOutput
to obtain.- Returns:
SubSectionOutput
.
-
getSubSectionObject
SubSectionObject getSubSectionObject(java.lang.String objectName)
Obtains theSubSectionObject
.- Parameters:
objectName
- Name of theSubSectionObject
to obtain.- Returns:
SubSectionObject
.
-
-