borland.jbcl Packages  borland.jbcl Class Hierarchy  borland.jbcl.util 

SelectFlags interface

borland.jbcl.util.SelectFlags

About the SelectFlags interface

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.


SelectFlags variables

Variables defined in this interface


SelectFlags variables

ADD_ITEM

  static int ADD_ITEM = 0x1 <<1
An item is added to set of selected items.

ADD_RANGE

  static int ADD_RANGE = 0x1 << 4
A range of items is added to the set of selected items.

CLEAR

  static int CLEAR = 0x1 << 0
All selected items are removed from the set of selected items leaving the set of selected items emtpy.

REMOVE_ITEM

  static int REMOVE_ITEM = 0x1 << 2
An item is removed from the set of selected items.

REMOVE_RANGE

  static int REMOVE_RANGE = 0x1 << 5
A range of items is removed from the set of selected items.

RESET_ANCHOR

  static int RESET_ANCHOR = 0x1 << 6
One end of a range of selected items is reset.

TOGGLE_ITEM

  static int TOGGLE_ITEM = 0x1 << 3
A selected item is toggled on or off.