|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface IPTListManager
General interface which is mean to be used for the addition, deletion, and edit of a list of simple "objects". These methods are meant to directly modify the database so there is no in-memory representation of the "object".
| Method Summary | |
|---|---|
int |
AddItem(java.lang.Object[][] itemProperties)
Adds a new item to the list. |
void |
DeleteItem(int itemID)
Delete an existing item from the list. |
IPTQueryResult |
QueryItems(int propIDMask,
int skipRows,
int maxRows,
java.lang.Object[][] queryFilter)
Query for an item in the list. |
void |
SetItem(int itemID,
java.lang.Object itemProperties)
Modifies the characteristics of an item in list. |
| Method Detail |
|---|
void SetItem(int itemID,
java.lang.Object itemProperties)
itemID - Activity IDitemProperties - 2D Object array containing 2 columns (property ID, property value) and 1-3 rows. Array is in [COL][ROW] format.int AddItem(java.lang.Object[][] itemProperties)
itemProperties - Array of item properties
void DeleteItem(int itemID)
itemID - Activity ID
IPTQueryResult QueryItems(int propIDMask,
int skipRows,
int maxRows,
java.lang.Object[][] queryFilter)
propIDMask - PropID maskskipRows - Number of rows to skipmaxRows - Maximum number of rows to return or -1 to return all rowsqueryFilter - Query filter
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||