Interface IModelAdapter
- All Known Implementing Classes:
EMFModelAdapter
,UML2ModelAdapter
public interface IModelAdapter
The EMFVM execution interface. Defines a set of methods dedicated to the execution of transformations.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
delete
(AbstractStackFrame frame, Object eo) Deletes an object on the given frame.void
finalizeModel
(IModel model) Finalizes the given model.get
(AbstractStackFrame frame, Object eo, String name) Gets a value from an object in the given frame.Returns the element id.getSupertypes
(Object type) Returns the list of supertypes of a given type.Returns the type of a given element.Invokes a method.boolean
Checks if an elements has been deleted in refining mode and does not belong to any resource.boolean
isMetametaElement
(Object element) Returnstrue
if the given element is managed by the metametamodel of the current model adapter.boolean
Returnstrue
if the given object is managed by the current model adapter.boolean
prettyPrint
(ExecEnv execEnv, PrintStream out, Object value) Displays in a readable format the given object.void
registerVMSupertypes
(Map<Class<?>, List<Class<?>>> vmSupertypes) Registers a map of supertypes.void
Registers a map of operations.void
set
(AbstractStackFrame frame, Object eo, String name, Object value) Sets a value on an object in the given frame.void
setAllowInterModelReferences
(boolean allowInterModelRefs) Sets "allow inter-model references" for this model adapter.void
Sets the element id.void
unSet
(AbstractStackFrame frame, Object eo, String name) Unsets a value on an object in the given frame.
-
Method Details
-
get
Gets a value from an object in the given frame.- Parameters:
frame
- theAbstractStackFrame
eo
- the objectname
- the name of the attribute / feature which contains the value- Returns:
- the value
-
set
Sets a value on an object in the given frame.- Parameters:
frame
- theAbstractStackFrame
eo
- the objectname
- the name of the attribute / feature which will contain the valuevalue
- the value to set
-
unSet
Unsets a value on an object in the given frame.- Parameters:
frame
- theAbstractStackFrame
eo
- the objectname
- the name of the attribute / feature which will contain the value
-
delete
Deletes an object on the given frame.- Parameters:
frame
- theAbstractStackFrame
eo
- the object to delete
-
registerVMSupertypes
Registers a map of supertypes.- Parameters:
vmSupertypes
- the map
-
registerVMTypeOperations
Registers a map of operations.- Parameters:
vmTypeOperations
- the map
-
prettyPrint
Displays in a readable format the given object.- Parameters:
execEnv
- the current execEnvout
- the output streamvalue
- the object to display- Returns:
- true if display has been successful
-
getType
Returns the type of a given element.- Parameters:
value
- the type- Returns:
- the type
-
getSupertypes
Returns the list of supertypes of a given type.- Parameters:
type
- the type- Returns:
- the list of supertypes
-
setAllowInterModelReferences
void setAllowInterModelReferences(boolean allowInterModelRefs) Sets "allow inter-model references" for this model adapter.- Parameters:
allowInterModelRefs
- true if intermodel references are allowed
-
invoke
Invokes a method.- Parameters:
method
- the method to invokeself
- the object contextarguments
- the call arguments- Returns:
- the method result
-
finalizeModel
Finalizes the given model.- Parameters:
model
- the given model
-
getID
Returns the element id.- Parameters:
element
- the element- Returns:
- the element id
-
isDeleted
Checks if an elements has been deleted in refining mode and does not belong to any resource.- Parameters:
element
- the element- Returns:
- ture if the element has been deleted. False otherwise.
-
setID
Sets the element id.- Parameters:
element
- the elementid
- the id to set
-
isModelElement
Returnstrue
if the given object is managed by the current model adapter.- Parameters:
o
- the given object- Returns:
true
if the given object is managed by the current model adapter
-
isMetametaElement
Returnstrue
if the given element is managed by the metametamodel of the current model adapter.- Parameters:
element
- the given element- Returns:
true
if the given element is managed by the metametamodel of the current model adapter
-