Operation |
Details |
public addObject():String |
Sequential Notes: | Adds a object of type T to the list (and therefore to the UI model) | |
public abstract createNewObject():T |
Sequential Notes: | I do not really know how to create and initialize a new object of type T, but you should be able to do so. | |
public getObjectDM():DataModel |
Sequential Notes: | The DataModel is always created by wrapping the data objects contained in the objectList. If this objectList is empty, there will be no rows to be displayed. @return DataModel | |
public getObjectList():List |
Sequential Notes: | ////////////////////////////////////////////////////////////////////////// Class implementation section | |
public removeObject():String |
Sequential Notes: | Removes object of type T from the list (and therefore from the UI model) | |
protected removeObjectAtIndex( int i):void |
Sequential |
public setObjectDM( DataModel objectDM):void |
Sequential Notes: | Simple setter, not really used yet | |
public setObjectList( List objectList):void |
Sequential |