Package net.officefloor.compile.section
Interface OfficeFunctionType
-
- All Known Implementing Classes:
OfficeFunctionTypeImpl
public interface OfficeFunctionType
Type definition
of theOfficeSectionFunction
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectDependencyType[]
getObjectDependencies()
Obtains theObjectDependencyType
instances that thisOfficeSectionFunction
is dependent upon.java.lang.String
getOfficeFunctionName()
Obtains the name of theOfficeSectionFunction
.OfficeSubSectionType
getOfficeSubSectionType()
Obtains theOfficeSubSectionType
directly containing thisOfficeFunctionType
.
-
-
-
Method Detail
-
getOfficeFunctionName
java.lang.String getOfficeFunctionName()
Obtains the name of the
OfficeSectionFunction
.This aids the
OfficeSource
in deciding theTeam
responsible for thisOfficeSectionFunction
.- Returns:
- Name of the
OfficeSectionFunction
.
-
getOfficeSubSectionType
OfficeSubSectionType getOfficeSubSectionType()
Obtains theOfficeSubSectionType
directly containing thisOfficeFunctionType
.- Returns:
OfficeSubSectionType
directly containing thisOfficeFunctionType
.
-
getObjectDependencies
ObjectDependencyType[] getObjectDependencies()
Obtains the
ObjectDependencyType
instances that thisOfficeSectionFunction
is dependent upon.This aids the
OfficeSource
in deciding theTeam
responsible for thisOfficeSectionFunction
.- Returns:
ObjectDependencyType
instances that thisOfficeSectionFunction
is dependent upon.
-
-