Interface SubSection
-
- All Superinterfaces:
PropertyConfigurable
- All Known Subinterfaces:
SectionNode
- All Known Implementing Classes:
SectionNodeImpl
public interface SubSection extends PropertyConfigurable
SubSectionof anSectionNode.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SubSectionInputgetSubSectionInput(java.lang.String inputName)Obtains theSubSectionInput.java.lang.StringgetSubSectionName()Obtains the name of thisSubSection.SubSectionObjectgetSubSectionObject(java.lang.String objectName)Obtains theSubSectionObject.SubSectionOutputgetSubSectionOutput(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 theSubSectionInputto obtain.- Returns:
SubSectionInput.
-
getSubSectionOutput
SubSectionOutput getSubSectionOutput(java.lang.String outputName)
Obtains theSubSectionOutput.- Parameters:
outputName- Name of theSubSectionOutputto obtain.- Returns:
SubSectionOutput.
-
getSubSectionObject
SubSectionObject getSubSectionObject(java.lang.String objectName)
Obtains theSubSectionObject.- Parameters:
objectName- Name of theSubSectionObjectto obtain.- Returns:
SubSectionObject.
-
-