borland Packages Class Hierarchy jbcl.util Package Index
borland.jbcl.util.SelectFlags
Variables
The SelectFlags interface is used for working with a set of selected items, also known as a selection pool. The interface defines constants that identify actions that can occur to a set of selected items.
static int ADD_ITEM = 0x1 << 1An item is added to set of selected items.
static int ADD_RANGE = 0x1 << 4A range of items is added to the set of selected items.
static int CLEAR = 0x1 << 0All selected items are removed from the set of selected items leaving the set of selected items emtpy.
static int REMOVE_ITEM = 0x1 << 2An item is removed from the set of selected items.
static int REMOVE_RANGE = 0x1 << 5A range of items is removed from the set of selected items.
static int RESET_ANCHOR = 0x1 << 6One end of a range of selected items is reset.
static int TOGGLE_ITEM = 0x1 << 3A selected item is toggled on or off.