Package org.eclipse.epsilon.emc.hutn
Class HutnModel
- java.lang.Object
-
- org.eclipse.epsilon.eol.models.Model
-
- org.eclipse.epsilon.emc.hutn.HutnModel
-
- All Implemented Interfaces:
AutoCloseable
,IAdaptableModel
,IModel
,IReflectiveModel
public class HutnModel extends Model implements IAdaptableModel, IReflectiveModel
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.epsilon.eol.models.IModel
IModel.AmbiguityCheckResult
-
-
Field Summary
Fields Modifier and Type Field Description static String
PROPERTY_SOURCE_FILE
-
Fields inherited from class org.eclipse.epsilon.eol.models.Model
aliases, ENV_PREFIX, name, PROPERTY_ALIASES, PROPERTY_NAME, PROPERTY_READONLOAD, PROPERTY_READONLY, PROPERTY_STOREONDISPOSAL, propertyGetter, propertySetter, readOnLoad, storeOnDisposal
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
adaptTo(Class<T> modelType)
Tries to adapt the model to a different type.Collection<?>
allContents()
Returns a collection containing all of the objects contained in this model.Object
createInstance(String type)
void
deleteElement(Object instance)
Collection<?>
getAllOfKind(String type)
Collection<?>
getAllOfType(String type)
Object
getContainerOf(Object object)
Returns the model element that contains the given model element, or null if the given model element is top-level.Object
getElementById(String id)
String
getElementId(Object instance)
String
getEnumerationLabelOf(Object literal)
Returns the enumeration label of the literal parameter.String
getEnumerationTypeOf(Object literal)
Returns the name of the enumeration type of the literal parameter.Object
getEnumerationValue(String enumeration, String label)
Collection<String>
getPropertiesOf(String type)
Returns a collection containing all of the properties that instances of type know about.IPropertyGetter
getPropertyGetter()
IReflectivePropertySetter
getPropertySetter()
String
getTypeNameOf(Object instance)
Returns a string representing the type of the instance object.Object
getTypeOf(Object instance)
boolean
hasPackage(String packageName)
Returns true iff this model contains a package with the given name.boolean
hasProperty(String type, String property)
boolean
hasType(String type)
boolean
isEnumerationValue(Object object)
Returns true iff object is an enumeration value.boolean
isInstantiable(String type)
boolean
isLoaded()
boolean
isModelElement(Object instance)
Used to test whether a Java object can be contained by this model.void
load()
void
load(StringProperties properties, IRelativePathResolver resolver)
boolean
owns(Object instance)
Used to test whether an object is contained in this model.boolean
preventLoadingOfExternalModelElements()
Prevents the loading of model elements that are referenced by this model but are not contained in this model.void
setElementId(Object instance, String newId)
boolean
store()
boolean
store(String location)
String
toString()
-
Methods inherited from class org.eclipse.epsilon.eol.models.Model
allInstances, createInstance, dispose, getAliases, getFullyQualifiedTypeNameOf, getMetamodel, getName, getTransactionSupport, isOfKind, isOfType, isPropertySet, isReadOnLoad, isStoredOnDisposal, knowsAboutProperty, load, load, setName, setReadOnLoad, setStoredOnDisposal
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.epsilon.eol.models.IModel
checkAmbiguity, close, createInstance, dispose, getAliases, getFullyQualifiedTypeNameOf, getMetamodel, getName, getTransactionSupport, isOfKind, isOfType, isPropertySet, isReadOnLoad, isStoredOnDisposal, knowsAboutProperty, load, load, setName, setReadOnLoad, setStoredOnDisposal
-
-
-
-
Field Detail
-
PROPERTY_SOURCE_FILE
public static final String PROPERTY_SOURCE_FILE
- See Also:
- Constant Field Values
-
-
Method Detail
-
preventLoadingOfExternalModelElements
public boolean preventLoadingOfExternalModelElements()
Description copied from interface:IReflectiveModel
Prevents the loading of model elements that are referenced by this model but are not contained in this model. This is useful for clients, such as Epsilon Flock, which create a clone or conservative copy of this model.- Specified by:
preventLoadingOfExternalModelElements
in interfaceIReflectiveModel
- Returns:
- true iff this method had an effect (i.e. when this model supports external references, was configured to load external references and is no longer configured to load external references).
-
load
public void load() throws EolModelLoadingException
- Specified by:
load
in interfaceIModel
- Throws:
EolModelLoadingException
-
load
public void load(StringProperties properties, IRelativePathResolver resolver) throws EolModelLoadingException
- Specified by:
load
in interfaceIModel
- Overrides:
load
in classModel
- Throws:
EolModelLoadingException
-
isLoaded
public boolean isLoaded()
- Since:
- 1.6
-
getPropertyGetter
public IPropertyGetter getPropertyGetter()
- Specified by:
getPropertyGetter
in interfaceIModel
- Overrides:
getPropertyGetter
in classModel
-
getPropertySetter
public IReflectivePropertySetter getPropertySetter()
- Specified by:
getPropertySetter
in interfaceIModel
- Specified by:
getPropertySetter
in interfaceIReflectiveModel
- Overrides:
getPropertySetter
in classModel
-
getEnumerationValue
public Object getEnumerationValue(String enumeration, String label) throws EolEnumerationValueNotFoundException
- Specified by:
getEnumerationValue
in interfaceIModel
- Throws:
EolEnumerationValueNotFoundException
-
allContents
public Collection<?> allContents()
Description copied from interface:IModel
Returns a collection containing all of the objects contained in this model.- Specified by:
allContents
in interfaceIModel
- Returns:
- all of the objects contained in this model.
-
getAllOfType
public Collection<?> getAllOfType(String type) throws EolModelElementTypeNotFoundException
- Specified by:
getAllOfType
in interfaceIModel
- Throws:
EolModelElementTypeNotFoundException
-
getAllOfKind
public Collection<?> getAllOfKind(String type) throws EolModelElementTypeNotFoundException
- Specified by:
getAllOfKind
in interfaceIModel
- Throws:
EolModelElementTypeNotFoundException
-
getTypeNameOf
public String getTypeNameOf(Object instance)
Description copied from interface:IModel
Returns a string representing the type of the instance object. The value returned by this function can be passed to createInstance to instantiate another object of the same type as instance.- Specified by:
getTypeNameOf
in interfaceIModel
- Parameters:
instance
- The model object whose type is to be determined.- Returns:
- the name of the type of the model object, instance.
-
createInstance
public Object createInstance(String type) throws EolModelElementTypeNotFoundException, EolNotInstantiableModelElementTypeException
- Specified by:
createInstance
in interfaceIModel
- Throws:
EolModelElementTypeNotFoundException
EolNotInstantiableModelElementTypeException
-
getElementById
public Object getElementById(String id)
- Specified by:
getElementById
in interfaceIModel
-
getElementId
public String getElementId(Object instance)
- Specified by:
getElementId
in interfaceIModel
-
setElementId
public void setElementId(Object instance, String newId)
- Specified by:
setElementId
in interfaceIModel
-
deleteElement
public void deleteElement(Object instance) throws EolRuntimeException
- Specified by:
deleteElement
in interfaceIModel
- Throws:
EolRuntimeException
-
owns
public boolean owns(Object instance)
Description copied from interface:IModel
Used to test whether an object is contained in this model.
-
isInstantiable
public boolean isInstantiable(String type)
- Specified by:
isInstantiable
in interfaceIModel
-
isModelElement
public boolean isModelElement(Object instance)
Description copied from interface:IModel
Used to test whether a Java object can be contained by this model. For example, EMF models can contain instances of EObject, but not instances of just Object.- Specified by:
isModelElement
in interfaceIModel
- Overrides:
isModelElement
in classModel
- Parameters:
instance
- the Java object to test.- Returns:
- true if and only if instance can be contained by this model.
-
hasPackage
public boolean hasPackage(String packageName)
Description copied from interface:IReflectiveModel
Returns true iff this model contains a package with the given name. In general, a "package" is a group of types (and potentially other packages) and a namespace for the grouped elements. The precise semantics of "package" is specific to the implementation. For example, an Ecore implementation might use EPackage. An XML implementation might use XML namespaces. A CSV implementation might not support any notion of packages (and hence always return false).- Specified by:
hasPackage
in interfaceIReflectiveModel
-
getContainerOf
public Object getContainerOf(Object object)
Description copied from interface:IReflectiveModel
Returns the model element that contains the given model element, or null if the given model element is top-level.- Specified by:
getContainerOf
in interfaceIReflectiveModel
- Parameters:
object
- The model element whose container is to be found.- Returns:
- the model element that contains object, or null if object is not contained in any other model element.
-
getPropertiesOf
public Collection<String> getPropertiesOf(String type) throws EolModelElementTypeNotFoundException
Description copied from interface:IReflectiveModel
Returns a collection containing all of the properties that instances of type know about.- Specified by:
getPropertiesOf
in interfaceIReflectiveModel
- Parameters:
type
- The type of model object whose properties are to be determined.- Returns:
- all of the properties that instances of type knows about.
- Throws:
EolModelElementTypeNotFoundException
- when this model has no such type
-
hasProperty
public boolean hasProperty(String type, String property) throws EolModelElementTypeNotFoundException
- Specified by:
hasProperty
in interfaceIReflectiveModel
- Throws:
EolModelElementTypeNotFoundException
-
isEnumerationValue
public boolean isEnumerationValue(Object object)
Description copied from interface:IReflectiveModel
Returns true iff object is an enumeration value.- Specified by:
isEnumerationValue
in interfaceIReflectiveModel
-
getEnumerationTypeOf
public String getEnumerationTypeOf(Object literal) throws EolNotAnEnumerationValueException
Description copied from interface:IReflectiveModel
Returns the name of the enumeration type of the literal parameter.- Specified by:
getEnumerationTypeOf
in interfaceIReflectiveModel
- Throws:
EolNotAnEnumerationValueException
- when literal is not an enumeration value
-
getEnumerationLabelOf
public String getEnumerationLabelOf(Object literal) throws EolNotAnEnumerationValueException
Description copied from interface:IReflectiveModel
Returns the enumeration label of the literal parameter.- Specified by:
getEnumerationLabelOf
in interfaceIReflectiveModel
- Throws:
EolNotAnEnumerationValueException
- when literal is not an enumeration value
-
adaptTo
public <T> T adaptTo(Class<T> modelType)
Description copied from interface:IAdaptableModel
Tries to adapt the model to a different type. If it is not possible, this method should returnnull
.- Specified by:
adaptTo
in interfaceIAdaptableModel
- Parameters:
modelType
- Type to which this model should be adapted.- Returns:
- Non-null value if the model could be adapted,
null
otherwise.
-
-