Inhaltsverzeichnis

New & Noteworthy 2.1.0 Milestone 2

Bearbeitung des IPS Build Path

Der IPS Build Path kann nun analog zum Java Build Path über eine Property Page des Projektes bearbeitet werden.

Berücksichtigung von Tabellen im Deep Copy Wizard

Der Deep-Copy-Wizard zum Erzeugen neuer Produkte bzw. Produktgenerationen kann nun auch referenzierte Tabelle mitkopieren.

Zugriff auf Modellinformationen zur Laufzeit

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);