de.cau.cs.kieler.ktm.extensions
public class TransformationTreeExtensions extends java.lang.Object
Extension for easier access and manipulation of TranformationTrees.
Constructors
Constructor and Description |
---|
TransformationTreeExtensions() |
Methods
Modifier and Type | Method and Description |
---|---|
de.cau.cs.kieler.ktm.transformationtree.ModelWrapper | addTransformationToTree(com.google.common.collect.ImmutableMultimap<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject> mapping, de.cau.cs.kieler.ktm.transformationtree.ModelWrapper modelNode, java.lang.String transformationID, org.eclipse.emf.ecore.EObject sourceModelRoot, org.eclipse.emf.ecore.EObject targetModelRoot, java.lang.String targetModelTypeID) Appends transformation mapping information about source- and target-model to given tree. |
java.util.List<de.cau.cs.kieler.ktm.transformationtree.EObjectWrapper> | children(de.cau.cs.kieler.ktm.transformationtree.EObjectWrapper element, de.cau.cs.kieler.ktm.transformationtree.ModelTransformation tranformation) Returns all child objects in target model of given ModelTransformation associated with given element. |
java.util.List<de.cau.cs.kieler.ktm.transformationtree.ModelWrapper> | children(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper model) Returns all child models of this node in tree, where given model is transformed into. |
de.cau.cs.kieler.ktm.transformationtree.ModelWrapper | findModelInTree(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper tree, org.eclipse.emf.ecore.EObject modelRoot, java.lang.String modelTypeID) Searches given transformation tree for matching model-nodes for given model instance and typeID If tree is malformed and there are more than one fully matching model the first one is returned. |
de.cau.cs.kieler.ktm.transformationtree.ModelWrapper | initializeTransformationTree(com.google.common.collect.ImmutableMultimap<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject> mapping, java.lang.String transformationID, org.eclipse.emf.ecore.EObject sourceModelRoot, java.lang.String sourceModelTypeID, org.eclipse.emf.ecore.EObject targetModelRoot, java.lang.String targetModelTypeID) Creates a new transformation tree containing given mapping as first transformation. |
de.cau.cs.kieler.ktm.transformationtree.ModelWrapper | makeTransient(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper modelNode) Sets ModelWrapper's transient flag and removes references to concrete Objects in all elements of given model. |
java.util.Map<de.cau.cs.kieler.ktm.transformationtree.EObjectWrapper,org.eclipse.emf.ecore.EObject> | objectMapping(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper modelNode, org.eclipse.emf.ecore.EObject model) Returns a mapping from Elements of a model in tree to a model instance. |
de.cau.cs.kieler.ktm.transformationtree.ModelWrapper | parent(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper model) Returns source model-node in tree, where given model is transformed from. |
java.util.List<de.cau.cs.kieler.ktm.transformationtree.EObjectWrapper> | parents(de.cau.cs.kieler.ktm.transformationtree.EObjectWrapper element, de.cau.cs.kieler.ktm.transformationtree.ModelTransformation tranformation) Returns all parent objects in source model of given ModelTransformation associated with given element. |
de.cau.cs.kieler.ktm.transformationtree.ModelWrapper | removeModelFromTree(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper modelNode) Removes given model from tree including all succeeding Models and EObjectWrapper-Mappings Returns parent in tree Returns null tree does not contain given model or model has no root |
com.google.common.collect.Multimap<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject> | resolveMapping(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper sourceModelNode, org.eclipse.emf.ecore.EObject sourceModel, de.cau.cs.kieler.ktm.transformationtree.ModelWrapper targetModelNode, org.eclipse.emf.ecore.EObject targetModel) Resolves a mapping between all elements of source and target model instances by their nodes in transformation tree. |
de.cau.cs.kieler.ktm.transformationtree.ModelWrapper | root(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper model) Returns root model-node of tree. |
java.util.List<de.cau.cs.kieler.ktm.transformationtree.ModelWrapper> | succeedingModels(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper model) Returns all succeeding models for given model. |
java.util.List<de.cau.cs.kieler.ktm.transformationtree.ModelTransformation> | succeedingTransformations(de.cau.cs.kieler.ktm.transformationtree.ModelWrapper model) Returns all succeeding ModelTransformations for given model-node. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
publicTransformationTreeExtensions()
publicde.cau.cs.kieler.ktm.transformationtree.ModelWrapperaddTransformationToTree(com.google.common.collect.ImmutableMultimap<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject>mapping, de.cau.cs.kieler.ktm.transformationtree.ModelWrappermodelNode, java.lang.StringtransformationID, org.eclipse.emf.ecore.EObjectsourceModelRoot, org.eclipse.emf.ecore.EObjecttargetModelRoot, java.lang.StringtargetModelTypeID)
Appends transformation mapping information about source- and target-model to given tree.
If this is the first transformation use initializeTransformationTree.
New transformation will be appended to modelNode representing source model.
Transformations CANNOT appended to transient models!
Completeness of mapping will not be checked. Only objects from mapping are created as Elements of Models in TransformationTree. If previous transformation mapping of source model was incomplete and current mapping contains information about missing objects in source model additional Elements of source model model in transformation tree will be created. If mapping is incomplete (model contains unmapped elements) later resolved mapping my be incomplete. If mapping contains entries for objects not contained in given model instances they will omitted.
Returns new leaf in tree as ModelWrapper representing target model.
Return null if sourceModel is not modelNode or model is transient.
publicjava.util.List<de.cau.cs.kieler.ktm.transformationtree.EObjectWrapper>children(de.cau.cs.kieler.ktm.transformationtree.EObjectWrapperelement, de.cau.cs.kieler.ktm.transformationtree.ModelTransformationtranformation)
Returns all child objects in target model of given ModelTransformation associated with given element.
If source model of given ModelTransformation does not contain given element returned list is empty.
publicjava.util.List<de.cau.cs.kieler.ktm.transformationtree.ModelWrapper>children(de.cau.cs.kieler.ktm.transformationtree.ModelWrappermodel)
Returns all child models of this node in tree, where given model is transformed into.
publicde.cau.cs.kieler.ktm.transformationtree.ModelWrapperfindModelInTree(de.cau.cs.kieler.ktm.transformationtree.ModelWrappertree, org.eclipse.emf.ecore.EObjectmodelRoot, java.lang.StringmodelTypeID)
Searches given transformation tree for matching model-nodes for given model instance and typeID
If tree is malformed and there are more than one fully matching model the first one is returned.
Returns null if no model is found or can not be identified because it is transient.
publicde.cau.cs.kieler.ktm.transformationtree.ModelWrapperinitializeTransformationTree(com.google.common.collect.ImmutableMultimap<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject>mapping, java.lang.StringtransformationID, org.eclipse.emf.ecore.EObjectsourceModelRoot, java.lang.StringsourceModelTypeID, org.eclipse.emf.ecore.EObjecttargetModelRoot, java.lang.StringtargetModelTypeID)
Creates a new transformation tree containing given mapping as first transformation.
Completeness of mapping will not be checked. Only objects from mapping are created as Elements of Models in TransformationTree. If mapping is incomplete (model contains unmapped elements) later resolved mapping my be incomplete. If mapping contains entries for objects not contained in given model instances they will omitted.
Returns leaf of new tree as ModelWrapper representing target model.
publicde.cau.cs.kieler.ktm.transformationtree.ModelWrappermakeTransient(de.cau.cs.kieler.ktm.transformationtree.ModelWrappermodelNode)
Sets ModelWrapper's transient flag and removes references to concrete Objects in all elements of given model.
Transient model can't be source model of any new transformation and has no association to it's concrete model.
This will improve scalability because transient models will not be kept in memory or persistent.
Can't be reverted.
publicjava.util.Map<de.cau.cs.kieler.ktm.transformationtree.EObjectWrapper,org.eclipse.emf.ecore.EObject>objectMapping(de.cau.cs.kieler.ktm.transformationtree.ModelWrappermodelNode, org.eclipse.emf.ecore.EObjectmodel)
Returns a mapping from Elements of a model in tree to a model instance.
ReferencedObjects of Elements in ModelWrapper in transformation tree are only copies of their origin instances. Returned mapping provides relations between Elements and their represented objects in given model instance.
Return null if any argument is null or model and model of modelNode does not match. If transformation tree was created on incomplete mappings returned mapping may be incomplete.
publicde.cau.cs.kieler.ktm.transformationtree.ModelWrapperparent(de.cau.cs.kieler.ktm.transformationtree.ModelWrappermodel)
Returns source model-node in tree, where given model is transformed from.
If model is root-node, returns null.
publicjava.util.List<de.cau.cs.kieler.ktm.transformationtree.EObjectWrapper>parents(de.cau.cs.kieler.ktm.transformationtree.EObjectWrapperelement, de.cau.cs.kieler.ktm.transformationtree.ModelTransformationtranformation)
Returns all parent objects in source model of given ModelTransformation associated with given element.
If target model of given ModelTransformation does not contain given element returned list is empty.
publicde.cau.cs.kieler.ktm.transformationtree.ModelWrapperremoveModelFromTree(de.cau.cs.kieler.ktm.transformationtree.ModelWrappermodelNode)
Removes given model from tree including all succeeding Models and EObjectWrapper-Mappings
Returns parent in tree
Returns null tree does not contain given model or model has no root
publiccom.google.common.collect.Multimap<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject>resolveMapping(de.cau.cs.kieler.ktm.transformationtree.ModelWrappersourceModelNode, org.eclipse.emf.ecore.EObjectsourceModel, de.cau.cs.kieler.ktm.transformationtree.ModelWrappertargetModelNode, org.eclipse.emf.ecore.EObjecttargetModel)
Resolves a mapping between all elements of source and target model instances by their nodes in transformation tree.
Returns a multi-mapping from elements of source model to target model elements. Mapping is created by resolving all transformations on a path from source to target. Source and target can be arbitrary model in tree, so path can be bottom up, top down or leaf to leaf.
Returns null if source or target model do not match to their models in tree or if they are not in the same tree. If transformation tree was created on incomplete mappings returned mapping may be incomplete.
publicde.cau.cs.kieler.ktm.transformationtree.ModelWrapperroot(de.cau.cs.kieler.ktm.transformationtree.ModelWrappermodel)
Returns root model-node of tree.
publicjava.util.List<de.cau.cs.kieler.ktm.transformationtree.ModelWrapper>succeedingModels(de.cau.cs.kieler.ktm.transformationtree.ModelWrappermodel)
Returns all succeeding models for given model.
BFS will be performed on sub tree.
publicjava.util.List<de.cau.cs.kieler.ktm.transformationtree.ModelTransformation>succeedingTransformations(de.cau.cs.kieler.ktm.transformationtree.ModelWrappermodel)
Returns all succeeding ModelTransformations for given model-node.
BFS will be performed on sub tree.