de.cau.cs.kieler.ktm.extensions
public class TransformationMapping extends java.lang.Object
Extension for creating mappings during transformation.
Constructors
Constructor and Description |
---|
TransformationMapping() |
Methods
Modifier and Type | Method and Description |
---|---|
org.eclipse.xtext.xbase.lib.Pair<com.google.common.collect.ImmutableSet<org.eclipse.emf.ecore.EObject>,com.google.common.collect.ImmutableSet<org.eclipse.emf.ecore.EObject>> | checkMappingCompleteness(org.eclipse.emf.ecore.EObject sourceModel, org.eclipse.emf.ecore.EObject targetModel) Checks if mapping is complete All objects in sourceModel are compared with parents and all targetModel objects are compared to children, both includes given source/target-model objects. |
void | Drops all current mapping information |
com.google.common.collect.ImmutableMultimap<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject> | This will extract mapping data as an immutable copy and clears local mapping afterwards |
boolean | mapChild(org.eclipse.emf.ecore.EObject parent, org.eclipse.emf.ecore.EObject child) Maps given child as result of this transformation for given parent. |
boolean | mapChildren(org.eclipse.emf.ecore.EObject parent, java.util.List<org.eclipse.emf.ecore.EObject> children) Maps given children as results of this transformation for given parent. |
boolean | mapParent(org.eclipse.emf.ecore.EObject child, org.eclipse.emf.ecore.EObject parent) Maps given parent as source of given child in this transformation. |
boolean | mapParents(org.eclipse.emf.ecore.EObject child, java.util.List<org.eclipse.emf.ecore.EObject> parents) Maps given parents as source of given child in this transformation. |
java.util.List<org.eclipse.emf.ecore.EObject> | mappedChildren(org.eclipse.emf.ecore.EObject parent) Returns all Children mapped to given parent |
<T extends org.eclipse.emf.ecore.EObject> T | mappedCopy(T original) Creates direct mapping between two identical models. |
java.util.List<org.eclipse.emf.ecore.EObject> | mappedParents(org.eclipse.emf.ecore.EObject child) Returns all Parents mapped to given child |
boolean | unmap(org.eclipse.emf.ecore.EObject first, org.eclipse.emf.ecore.EObject second) Removes mapping between given objects. |
boolean | unmapAll(org.eclipse.emf.ecore.EObject obj) Removes all mappings for given objects. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
publicTransformationMapping()
publicorg.eclipse.xtext.xbase.lib.Pair<com.google.common.collect.ImmutableSet<org.eclipse.emf.ecore.EObject>,com.google.common.collect.ImmutableSet<org.eclipse.emf.ecore.EObject>>checkMappingCompleteness(org.eclipse.emf.ecore.EObjectsourceModel, org.eclipse.emf.ecore.EObjecttargetModel)
Checks if mapping is complete
All objects in sourceModel are compared with parents and all targetModel objects are compared to children, both includes given source/target-model objects.
Returns Pair of two sets where were key-element is symmetric difference between source model objects and all parents and value-element is symmetric difference between target and children. All elements are mapped correctly if both sets are empty.
publicvoidclearMapping()
Drops all current mapping information
publiccom.google.common.collect.ImmutableMultimap<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject>extractMappingData()
This will extract mapping data as an immutable copy and clears local mapping afterwards
publicbooleanmapChild(org.eclipse.emf.ecore.EObjectparent, org.eclipse.emf.ecore.EObjectchild)
Maps given child as result of this transformation for given parent.
publicbooleanmapChildren(org.eclipse.emf.ecore.EObjectparent, java.util.List<org.eclipse.emf.ecore.EObject>children)
Maps given children as results of this transformation for given parent.
publicbooleanmapParent(org.eclipse.emf.ecore.EObjectchild, org.eclipse.emf.ecore.EObjectparent)
Maps given parent as source of given child in this transformation.
publicbooleanmapParents(org.eclipse.emf.ecore.EObjectchild, java.util.List<org.eclipse.emf.ecore.EObject>parents)
Maps given parents as source of given child in this transformation.
publicjava.util.List<org.eclipse.emf.ecore.EObject>mappedChildren(org.eclipse.emf.ecore.EObjectparent)
Returns all Children mapped to given parent
public<T extends org.eclipse.emf.ecore.EObject>TmappedCopy(Toriginal)
Creates direct mapping between two identical models.
Use for transformations based on copies.
Mapping will include given root elements.
publicjava.util.List<org.eclipse.emf.ecore.EObject>mappedParents(org.eclipse.emf.ecore.EObjectchild)
Returns all Parents mapped to given child
publicbooleanunmap(org.eclipse.emf.ecore.EObjectfirst, org.eclipse.emf.ecore.EObjectsecond)
Removes mapping between given objects.
Parent child order is arbitrary.
publicbooleanunmapAll(org.eclipse.emf.ecore.EObjectobj)
Removes all mappings for given objects.
Object can be parent or child