Package net.officefloor.woof.template
Interface WoofTemplateExtensionSourceContext
-
- All Superinterfaces:
ConfigurationContext
,SourceContext
,SourceProperties
public interface WoofTemplateExtensionSourceContext extends SourceContext, ConfigurationContext
Context for theWoofTemplateExtensionSource
.- Author:
- Daniel Sagenschneider
-
-
Field Summary
-
Fields inherited from interface net.officefloor.configuration.ConfigurationContext
DEFAULT_TAG_PREFIX, DEFAULT_TAG_SUFFIX, PROPERTY_CONFIGURATION_INPUT_CHARSET, PROPERTY_CONFIGURATION_INPUT_TAG_PREFIX, PROPERTY_CONFIGURATION_INPUT_TAG_SUFFIX, PROPERTY_CONFIGURATION_OUTPUT_CHARSET
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getApplicationPath()
Obtains the application path to theWebTemplate
.OfficeArchitect
getOfficeArchitect()
Obtains theOfficeArchitect
that theWebTemplate
has been added.WebTemplate
getTemplate()
Obtains theWebTemplate
being extended.WebArchitect
getWebArchitect()
Obtains theWebArchitect
that theWebTemplate
has been added.-
Methods inherited from interface net.officefloor.configuration.ConfigurationContext
getConfigurationItem, getOptionalConfigurationItem
-
Methods inherited from interface net.officefloor.frame.api.source.SourceContext
getClassLoader, getClock, getLogger, getName, getOptionalResource, getProfiles, getResource, isLoadingType, loadClass, loadOptionalClass, loadOptionalService, loadOptionalServices, loadService, loadService, loadServices
-
Methods inherited from interface net.officefloor.frame.api.source.SourceProperties
getProperties, getProperty, getProperty, getPropertyNames
-
-
-
-
Method Detail
-
getApplicationPath
java.lang.String getApplicationPath()
Obtains the application path to theWebTemplate
.- Returns:
- Application path to the
WebTemplate
.
-
getTemplate
WebTemplate getTemplate()
Obtains theWebTemplate
being extended.- Returns:
WebTemplate
being extended.
-
getWebArchitect
WebArchitect getWebArchitect()
Obtains theWebArchitect
that theWebTemplate
has been added.- Returns:
WebArchitect
.
-
getOfficeArchitect
OfficeArchitect getOfficeArchitect()
Obtains theOfficeArchitect
that theWebTemplate
has been added.- Returns:
OfficeArchitect
.
-
-