Interface OfficeSectionTransformerContext
-
- All Known Subinterfaces:
SectionNode
- All Known Implementing Classes:
SectionNodeImpl
public interface OfficeSectionTransformerContext
Context for theOfficeSectionTransformer
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyList
createPropertyList()
Creates a newPropertyList
.java.lang.String
getOfficeSectionName()
Obtains the name of theOfficeSection
.java.lang.String
getSectionLocation()
Obtains the location of theOfficeSection
being transformed.PropertyList
getSectionProperties()
Obtains thePropertyList
of theOfficeSection
being transformed.java.lang.String
getSectionSourceClassName()
void
setTransformedOfficeSection(java.lang.String sectionSourceClassName, java.lang.String sectionLocation, PropertyList sectionProperties)
Specifies the transformedOfficeSection
.void
setTransformedOfficeSection(SectionSource sectionSource, java.lang.String sectionLocation, PropertyList sectionProperties)
Specifies the transformedOfficeSection
.
-
-
-
Method Detail
-
getOfficeSectionName
java.lang.String getOfficeSectionName()
Obtains the name of theOfficeSection
.- Returns:
- Name of the
OfficeSection
.
-
getSectionSourceClassName
java.lang.String getSectionSourceClassName()
- Returns:
SectionSource
Class
name of theOfficeSection
being transformed.
-
getSectionLocation
java.lang.String getSectionLocation()
Obtains the location of theOfficeSection
being transformed.- Returns:
- Location of the
OfficeSection
being transformed.
-
getSectionProperties
PropertyList getSectionProperties()
Obtains thePropertyList
of theOfficeSection
being transformed.- Returns:
PropertyList
of theOfficeSection
being transformed.
-
createPropertyList
PropertyList createPropertyList()
Creates a newPropertyList
.- Returns:
- New
PropertyList
.
-
setTransformedOfficeSection
void setTransformedOfficeSection(java.lang.String sectionSourceClassName, java.lang.String sectionLocation, PropertyList sectionProperties)
Specifies the transformedOfficeSection
.- Parameters:
sectionSourceClassName
-SectionSource
Class
name.sectionLocation
-SectionSource
location.sectionProperties
-OfficeSection
PropertyList
.
-
setTransformedOfficeSection
void setTransformedOfficeSection(SectionSource sectionSource, java.lang.String sectionLocation, PropertyList sectionProperties)
Specifies the transformedOfficeSection
.- Parameters:
sectionSource
-SectionSource
.sectionLocation
-SectionSource
location.sectionProperties
-OfficeSection
PropertyList
.
-
-