Package net.officefloor.compile
Interface SectionSourceService<S extends SectionSource>
-
- All Known Implementing Classes:
ClassSectionSource
,SectionModelSectionSource
public interface SectionSourceService<S extends SectionSource>
Service to plug-in an
SectionSource
Class
alias by including the extensionSectionSource
jar on the class path.OfficeFloorCompiler.addSectionSourceAlias(String, Class)
will be invoked for each foundSectionSourceService
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getSectionSourceAlias()
Obtains the alias for theSectionSource
Class
.java.lang.Class<S>
getSectionSourceClass()
Obtains theSectionSource
Class
.
-
-
-
Method Detail
-
getSectionSourceAlias
java.lang.String getSectionSourceAlias()
Obtains the alias for theSectionSource
Class
.- Returns:
- Alias for the
SectionSource
Class
.
-
getSectionSourceClass
java.lang.Class<S> getSectionSourceClass()
Obtains theSectionSource
Class
.- Returns:
SectionSource
Class
.
-
-