Package org.enterprisedomain.classmaker
Interface Strategy
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject
,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
StrategyImpl
public interface Strategy extends org.eclipse.emf.ecore.EObject
A representation of the model object 'Strategy'.The following features are supported:
- See Also:
ClassMakerPackage.getStrategy()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
configureJobs(boolean create, org.eclipse.core.runtime.IProgressMonitor monitor)
void
configuteBuildJobs(org.eclipse.core.runtime.IProgressMonitor monitor)
Worker
createExporter()
Worker
createGenerator()
Worker
createInstaller()
Worker
createModelLoader()
org.eclipse.emf.common.util.EList<Worker>
getExporters()
Returns the value of the 'Exporters' reference list.org.eclipse.emf.common.util.EList<Worker>
getGenerators()
Returns the value of the 'Generators' reference list.org.eclipse.emf.common.util.EList<Worker>
getInstallers()
Returns the value of the 'Installers' reference list.org.eclipse.emf.common.util.EList<Worker>
getLoaders()
Returns the value of the 'Loaders' reference list.Worker
getReturnWorker()
State
getState()
Returns the value of the 'State' reference.void
setState(State value)
Sets the value of the 'State
' reference.
-
-
-
Method Detail
-
getGenerators
org.eclipse.emf.common.util.EList<Worker> getGenerators()
Returns the value of the 'Generators' reference list. The list contents are of typeWorker
.- Returns:
- the value of the 'Generators' reference list.
- See Also:
ClassMakerPackage.getStrategy_Generators()
-
getExporters
org.eclipse.emf.common.util.EList<Worker> getExporters()
Returns the value of the 'Exporters' reference list. The list contents are of typeWorker
.- Returns:
- the value of the 'Exporters' reference list.
- See Also:
ClassMakerPackage.getStrategy_Exporters()
-
getInstallers
org.eclipse.emf.common.util.EList<Worker> getInstallers()
Returns the value of the 'Installers' reference list. The list contents are of typeWorker
.- Returns:
- the value of the 'Installers' reference list.
- See Also:
ClassMakerPackage.getStrategy_Installers()
-
getLoaders
org.eclipse.emf.common.util.EList<Worker> getLoaders()
Returns the value of the 'Loaders' reference list. The list contents are of typeWorker
.- Returns:
- the value of the 'Loaders' reference list.
- See Also:
ClassMakerPackage.getStrategy_Loaders()
-
getState
State getState()
Returns the value of the 'State' reference. It is bidirectional and its opposite is 'Strategy
'.- Returns:
- the value of the 'State' reference.
- See Also:
setState(State)
,ClassMakerPackage.getStrategy_State()
,State.getStrategy()
-
setState
void setState(State value)
Sets the value of the 'State
' reference.- Parameters:
value
- the new value of the 'State' reference.- See Also:
getState()
-
createGenerator
Worker createGenerator()
-
createExporter
Worker createExporter()
-
createInstaller
Worker createInstaller()
-
createModelLoader
Worker createModelLoader()
-
getReturnWorker
Worker getReturnWorker()
-
configureJobs
int configureJobs(boolean create, org.eclipse.core.runtime.IProgressMonitor monitor)
-
configuteBuildJobs
void configuteBuildJobs(org.eclipse.core.runtime.IProgressMonitor monitor)
-
-