|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
IPersistentDataManager is an interface for "Manager" objects that deal with IPersistantData objects.
Method Summary | |
void |
add(Object object)
Add an object to this manager |
void |
delete(Object object)
Remove an object to this manager |
Vector |
getAllObjects()
Return a Vector of all objects available for this given BusinessObjectManager class Example: DataElementManager.getAllObjects(); returns a Vector with all DataElements |
Object |
newBusinessObject()
Return a particular instance of a BusinessObject Example: DataElementManager.newInstance() returns DataElement |
void |
resetObjectList()
Reset the cached list of objects by nulling the cached Vector out |
Object |
selectObject(String sqlSuffix)
Return a single business object given the sql suffix parmater Example: DataElementManager.selectObject("where x = 5"); |
Vector |
selectObjects(String sqlSuffix)
Return a Vector of all objects that satisfy the sqlSuffix Example: DataElementManager.getAllObjects(); returns a Vector with all DataElements |
void |
update(Object object)
Update an object to this manager |
Method Detail |
public void add(Object object) throws Exception
Exception
public void delete(Object object) throws Exception
Exception
public Vector getAllObjects() throws Exception
Exception
public Object newBusinessObject() throws Exception
Exception
public void resetObjectList() throws Exception
Exception
public Object selectObject(String sqlSuffix) throws Exception
Exception
public Vector selectObjects(String sqlSuffix) throws Exception
Exception
public void update(Object object) throws Exception
Exception
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |