Interface OfficeSectionTransformerContext
-
- All Known Subinterfaces:
SectionNode
- All Known Implementing Classes:
SectionNodeImpl
public interface OfficeSectionTransformerContextContext for theOfficeSectionTransformer.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyListcreatePropertyList()Creates a newPropertyList.java.lang.StringgetOfficeSectionName()Obtains the name of theOfficeSection.java.lang.StringgetSectionLocation()Obtains the location of theOfficeSectionbeing transformed.PropertyListgetSectionProperties()Obtains thePropertyListof theOfficeSectionbeing transformed.java.lang.StringgetSectionSourceClassName()voidsetTransformedOfficeSection(java.lang.String sectionSourceClassName, java.lang.String sectionLocation, PropertyList sectionProperties)Specifies the transformedOfficeSection.voidsetTransformedOfficeSection(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:
SectionSourceClassname of theOfficeSectionbeing transformed.
-
getSectionLocation
java.lang.String getSectionLocation()
Obtains the location of theOfficeSectionbeing transformed.- Returns:
- Location of the
OfficeSectionbeing transformed.
-
getSectionProperties
PropertyList getSectionProperties()
Obtains thePropertyListof theOfficeSectionbeing transformed.- Returns:
PropertyListof theOfficeSectionbeing 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-SectionSourceClassname.sectionLocation-SectionSourcelocation.sectionProperties-OfficeSectionPropertyList.
-
setTransformedOfficeSection
void setTransformedOfficeSection(SectionSource sectionSource, java.lang.String sectionLocation, PropertyList sectionProperties)
Specifies the transformedOfficeSection.- Parameters:
sectionSource-SectionSource.sectionLocation-SectionSourcelocation.sectionProperties-OfficeSectionPropertyList.
-
-