Der IPS Build Path kann nun analog zum Java Build Path über eine Property Page des Projektes bearbeitet werden.
Der Deep-Copy-Wizard zum Erzeugen neuer Produkte bzw. Produktgenerationen kann nun auch referenzierte Tabelle mitkopieren.
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);