Package net.officefloor.compile.section
Interface OfficeSubSectionType
-
- All Known Subinterfaces:
OfficeSectionType
- All Known Implementing Classes:
OfficeSectionTypeImpl
public interface OfficeSubSectionType
Type definition
of a section of theOfficeSubSection
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OfficeFunctionType[]
getOfficeFunctionTypes()
Obtains theOfficeFunctionType
instances for this particularOfficeSubSection
.OfficeSectionManagedObjectType[]
getOfficeSectionManagedObjectTypes()
Obtains theOfficeSectionManagedObjectType
instances for this particularOfficeSubSection
.java.lang.String
getOfficeSectionName()
Obtains the name of thisOfficeSection
/OfficeSubSection
.OfficeSubSectionType[]
getOfficeSubSectionTypes()
Obtains theOfficeSubSectionType
instances of thisOfficeSectionType
.OfficeSubSectionType
getParentOfficeSubSectionType()
Obtains the parentOfficeSubSectionType
.
-
-
-
Method Detail
-
getOfficeSectionName
java.lang.String getOfficeSectionName()
Obtains the name of thisOfficeSection
/OfficeSubSection
.- Returns:
- Name of this
OfficeSection
/OfficeSubSection
.
-
getParentOfficeSubSectionType
OfficeSubSectionType getParentOfficeSubSectionType()
Obtains the parentOfficeSubSectionType
.- Returns:
- Parent
OfficeSubSectionType
ornull
if this is theOfficeSectionType
.
-
getOfficeSubSectionTypes
OfficeSubSectionType[] getOfficeSubSectionTypes()
Obtains theOfficeSubSectionType
instances of thisOfficeSectionType
.- Returns:
OfficeSubSectionType
instances.
-
getOfficeFunctionTypes
OfficeFunctionType[] getOfficeFunctionTypes()
Obtains the
OfficeFunctionType
instances for this particularOfficeSubSection
.This does not include the
OfficeFunctionType
instances of the sub sections.- Returns:
OfficeFunctionType
instances for this particularOfficeSubSection
.
-
getOfficeSectionManagedObjectTypes
OfficeSectionManagedObjectType[] getOfficeSectionManagedObjectTypes()
Obtains the
OfficeSectionManagedObjectType
instances for this particularOfficeSubSection
.This does not include the
OfficeSectionManagedObjectType
instances of the sub sections.- Returns:
OfficeSectionManagedObjectType
instances for this particularOfficeSubSection
.
-
-