Package org.contextmapper.dsl.standalone
Class StandaloneContextMapper
java.lang.Object
org.contextmapper.dsl.standalone.StandaloneContextMapper
- All Implemented Interfaces:
StandaloneContextMapperAPI
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
applyRefactoring
(CMLResource cml, SemanticCMLRefactoring refactoring) Applies a refactoring (must be of type SemanticCMLRefactoring) on a CML model.void
callGenerator
(CMLResource cml, org.eclipse.xtext.generator.IGenerator2 generator) Calls a generator that produces output (Graphical Context Map, PlantUML, etc.) given a CML resource as input.void
callGenerator
(CMLResource cml, org.eclipse.xtext.generator.IGenerator2 generator, String outputDir) Calls a generator that produces output (Graphical Context Map, PlantUML, etc.) given a CML resource as input.Creates a new CML model.Creates a new CML model.Loads a CML model, given a *.cml file.Loads a CML model, given a *.cml file.
-
Constructor Details
-
StandaloneContextMapper
public StandaloneContextMapper()
-
-
Method Details
-
loadCML
Description copied from interface:StandaloneContextMapperAPI
Loads a CML model, given a *.cml file.- Specified by:
loadCML
in interfaceStandaloneContextMapperAPI
- Parameters:
filepath
- the path to the *.cml file that shall be loaded- Returns:
- the CMLResource loaded from the *.cml file
-
loadCML
Description copied from interface:StandaloneContextMapperAPI
Loads a CML model, given a *.cml file.- Specified by:
loadCML
in interfaceStandaloneContextMapperAPI
- Parameters:
cmlFile
- the *.cml file- Returns:
- the CMLResource loaded from the *.cml file
-
callGenerator
Description copied from interface:StandaloneContextMapperAPI
Calls a generator that produces output (Graphical Context Map, PlantUML, etc.) given a CML resource as input. This method generates all output files into the default directory "./src-gen".- Specified by:
callGenerator
in interfaceStandaloneContextMapperAPI
- Parameters:
cml
- the CML resource for which the generator shall be calledgenerator
- the generator that shall be called
-
callGenerator
public void callGenerator(CMLResource cml, org.eclipse.xtext.generator.IGenerator2 generator, String outputDir) Description copied from interface:StandaloneContextMapperAPI
Calls a generator that produces output (Graphical Context Map, PlantUML, etc.) given a CML resource as input. This method allows to define the directory into which the output shall be generated (start with "./" and provide a directory relative to your execution home).- Specified by:
callGenerator
in interfaceStandaloneContextMapperAPI
- Parameters:
cml
- the CML resource for which the generator shall be calledgenerator
- the generator that shall be calledoutputDir
- the directory in which you want to generate the output (start with "./", relative to your execution directory)
-
createCML
Description copied from interface:StandaloneContextMapperAPI
Creates a new CML model.- Specified by:
createCML
in interfaceStandaloneContextMapperAPI
- Parameters:
filepath
- the filepath where the *.cml file will be stored, in case the resource is saved/persisted- Returns:
- the new CMLResource (not yet persisted; you have to call save() on the resource)
-
createCML
Description copied from interface:StandaloneContextMapperAPI
Creates a new CML model.- Specified by:
createCML
in interfaceStandaloneContextMapperAPI
- Parameters:
cmlFile
- the file where the *.cml file will be stored, in case the resource is saved/persisted- Returns:
- the new CMLResource (not yet persisted; you have to call save() on the resource)
-
applyRefactoring
Description copied from interface:StandaloneContextMapperAPI
Applies a refactoring (must be of type SemanticCMLRefactoring) on a CML model.- Specified by:
applyRefactoring
in interfaceStandaloneContextMapperAPI
- Parameters:
cml
- the model on which the refactoring shall be appliedrefactoring
- the refactoring that shall be applied
-