Interface ExecutiveLoader
-
- All Known Implementing Classes:
ExecutiveLoaderImpl
public interface ExecutiveLoaderLoads theExecutiveTypefrom theExecutiveSource.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All 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 theExecutiveSource.- Returns:
PropertyListof theExecutiveSourcePropertyinstances of theExecutiveSourceSpecificationornullif issues, which are reported to theCompilerIssues.
-
loadSpecification
PropertyList loadSpecification(ExecutiveSource executiveSource)
- Parameters:
executiveSource-ExecutiveSourceinstance.- Returns:
PropertyListof theExecutiveSourcePropertyinstances of theExecutiveSourceSpecificationornullif issues, which are reported to theCompilerIssues.
-
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 theExecutiveSource.propertyList-PropertyListcontaining the properties to source theExecutiveType.- Returns:
ExecutiveTypeornullif issues, which are reported to theCompilerIssues.
-
loadExecutiveType
ExecutiveType loadExecutiveType(ExecutiveSource executiveSource, PropertyList propertyList)
Loads and returns theExecutiveTypesourced from theExecutiveSource.- Parameters:
executiveSource-ExecutiveSourceinstance.propertyList-PropertyListcontaining the properties to source theExecutiveType.- Returns:
ExecutiveTypeornullif issues, which are reported to theCompilerIssues.
-
-