Interface ExecutiveLoader
-
- All Known Implementing Classes:
ExecutiveLoaderImpl
public interface ExecutiveLoader
Loads theExecutiveType
from 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 theExecutiveType
sourced from theExecutiveSource
.ExecutiveType
loadExecutiveType(ExecutiveSource executiveSource, PropertyList propertyList)
Loads and returns theExecutiveType
sourced from theExecutiveSource
.<TS extends ExecutiveSource>
PropertyListloadSpecification(java.lang.Class<TS> executiveSourceClass)
PropertyList
loadSpecification(ExecutiveSource executiveSource)
-
-
-
Method Detail
-
loadSpecification
<TS extends ExecutiveSource> PropertyList loadSpecification(java.lang.Class<TS> executiveSourceClass)
- Type Parameters:
TS
-ExecutiveSource
type.- Parameters:
executiveSourceClass
- Class of theExecutiveSource
.- Returns:
PropertyList
of theExecutiveSourceProperty
instances of theExecutiveSourceSpecification
ornull
if issues, which are reported to theCompilerIssues
.
-
loadSpecification
PropertyList loadSpecification(ExecutiveSource executiveSource)
- Parameters:
executiveSource
-ExecutiveSource
instance.- Returns:
PropertyList
of theExecutiveSourceProperty
instances of theExecutiveSourceSpecification
ornull
if issues, which are reported to theCompilerIssues
.
-
loadExecutiveType
<TS extends ExecutiveSource> ExecutiveType loadExecutiveType(java.lang.Class<TS> executiveSourceClass, PropertyList propertyList)
Loads and returns theExecutiveType
sourced from theExecutiveSource
.- Type Parameters:
TS
-ExecutiveSource
type.- Parameters:
executiveSourceClass
- Class of theExecutiveSource
.propertyList
-PropertyList
containing the properties to source theExecutiveType
.- Returns:
ExecutiveType
ornull
if issues, which are reported to theCompilerIssues
.
-
loadExecutiveType
ExecutiveType loadExecutiveType(ExecutiveSource executiveSource, PropertyList propertyList)
Loads and returns theExecutiveType
sourced from theExecutiveSource
.- Parameters:
executiveSource
-ExecutiveSource
instance.propertyList
-PropertyList
containing the properties to source theExecutiveType
.- Returns:
ExecutiveType
ornull
if issues, which are reported to theCompilerIssues
.
-
-