Interface ExecutiveLoader
- 
- All Known Implementing Classes:
- ExecutiveLoaderImpl
 
 public interface ExecutiveLoaderLoads theExecutiveTypefrom theExecutiveSource.- Author:
- Daniel Sagenschneider
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description <TS extends ExecutiveSource>
 ExecutiveTypeloadExecutiveType(java.lang.Class<TS> executiveSourceClass, PropertyList propertyList)Loads and returns theExecutiveTypesourced from theExecutiveSource.ExecutiveTypeloadExecutiveType(ExecutiveSource executiveSource, PropertyList propertyList)Loads and returns theExecutiveTypesourced from theExecutiveSource.<TS extends ExecutiveSource>
 PropertyListloadSpecification(java.lang.Class<TS> executiveSourceClass)PropertyListloadSpecification(ExecutiveSource executiveSource)
 
- 
- 
- 
Method Detail- 
loadSpecification<TS extends ExecutiveSource> PropertyList loadSpecification(java.lang.Class<TS> executiveSourceClass) - Type Parameters:
- TS-- ExecutiveSourcetype.
- Parameters:
- executiveSourceClass- Class of the- ExecutiveSource.
- Returns:
- PropertyListof the- ExecutiveSourcePropertyinstances of the- ExecutiveSourceSpecificationor- nullif issues, which are reported to the- CompilerIssues.
 
 - 
loadSpecificationPropertyList loadSpecification(ExecutiveSource executiveSource) - Parameters:
- executiveSource-- ExecutiveSourceinstance.
- Returns:
- PropertyListof the- ExecutiveSourcePropertyinstances of the- ExecutiveSourceSpecificationor- nullif issues, which are reported to the- CompilerIssues.
 
 - 
loadExecutiveType<TS extends ExecutiveSource> ExecutiveType loadExecutiveType(java.lang.Class<TS> executiveSourceClass, PropertyList propertyList) Loads and returns theExecutiveTypesourced from theExecutiveSource.- Type Parameters:
- TS-- ExecutiveSourcetype.
- Parameters:
- executiveSourceClass- Class of the- ExecutiveSource.
- propertyList-- PropertyListcontaining the properties to source the- ExecutiveType.
- Returns:
- ExecutiveTypeor- nullif issues, which are reported to the- CompilerIssues.
 
 - 
loadExecutiveTypeExecutiveType loadExecutiveType(ExecutiveSource executiveSource, PropertyList propertyList) Loads and returns theExecutiveTypesourced from theExecutiveSource.- Parameters:
- executiveSource-- ExecutiveSourceinstance.
- propertyList-- PropertyListcontaining the properties to source the- ExecutiveType.
- Returns:
- ExecutiveTypeor- nullif issues, which are reported to the- CompilerIssues.
 
 
- 
 
-