====== 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.\\
{{f10-org:new2_1_0_ms2:ipsbuildpath.png|}}
\\
===== Berücksichtigung von Tabellen im Deep Copy Wizard =====
Der Deep-Copy-Wizard zum Erzeugen neuer Produkte bzw. Produktgenerationen kann nun auch referenzierte Tabelle mitkopieren.\\
{{f10-org:new2_1_0_ms2:deepcopywizard.png|}}
\\
===== Zugriff auf Modellinformationen zur Laufzeit =====
Das RuntimeRepository stellt nun Methoden zur Verfügung, um die Modellinformationen abfragen zu können.\\
\\
''
/* \\
* Returns the IModelType containing the meta information for the given model object class.\\
*/\\
public IModelType getModelType(Class> modelObjectClass);\\
\\
/*\\
* Returns the IModelType containing the meta information for the given model object.\\
* This is a convenience method calling getModelType with the model object's class.\\
*/\\
public IModelType getModelType(IModelObject modelObject);\\
\\
/*\\
* Returns the IModelType containing the meta information for the given model object.\\
* This is a convenience method calling getModelType with the model object's class.\\
*/\\
public IModelType getModelType(IProductComponent modelObject);\\
''