com.plumtree.server
Interface IPTPickListEditor

All Superinterfaces:
IPTUnknown

public interface IPTPickListEditor
extends IPTUnknown

Modify the values of a managed pick list. This interface directly interacts with the database (there is no in-memory representation of a pick list). Picktrees and unmanaged pick lists cannot be edited using the Plumtree API, and can only be modified via SQL.

Author:
Joseph Chen

Method Summary
 void RemoveAll()
          Remove all items from the picklist.
 void SetItems(java.lang.Object[][] items)
          Edit the items in a pick list.
 
Methods inherited from interface com.plumtree.server.IPTUnknown
GetInterfaces
 

Method Detail

SetItems

void SetItems(java.lang.Object[][] items)
Edit the items in a pick list.

Parameters:
items - 2D array containing columns specified in PT_EDIT_PICKLIST_COLS

RemoveAll

void RemoveAll()
Remove all items from the picklist.