Das RuntimeRepository stellt nun Methoden zur Verfügung, um die Modellinformationen abfragen zu können.
/*
* Returns the <code>IModelType</code> containing the meta information for the given model object class.
*/
public IModelType getModelType(Class<?> modelObjectClass);
/*
* Returns the <code>IModelType</code> containing the meta information for the given model object.
* This is a convenience method calling <code>getModelType</code> with the model object’s class.
*/
public IModelType getModelType(IModelObject modelObject);
/*
* Returns the <code>IModelType</code> containing the meta information for the given model object.
* This is a convenience method calling <code>getModelType</code> with the model object’s class.
*/
public IModelType getModelType(IProductComponent modelObject);