< prev index next >

src/share/classes/javax/accessibility/AccessibleAction.java

Print this page
rev 1499 : 8009168: accessibility.properties syntax issue
Reviewed-by: ptbrunet, mfang, alexsch


  37  * method.  If the return value is not null, the object supports this interface.
  38  *
  39  * @see Accessible
  40  * @see Accessible#getAccessibleContext
  41  * @see AccessibleContext
  42  * @see AccessibleContext#getAccessibleAction
  43  *
  44  * @author      Peter Korn
  45  * @author      Hans Muller
  46  * @author      Willie Walker
  47  * @author      Lynn Monsanto
  48  */
  49 public interface AccessibleAction {
  50 
  51     /**
  52      * An action which causes a tree node to
  53      * collapse if expanded and expand if collapsed.
  54      * @since 1.5
  55      */
  56     public static final String TOGGLE_EXPAND =
  57         new String ("toggle expand");
  58 
  59     /**
  60      * An action which increments a value.
  61      * @since 1.5
  62      */
  63     public static final String INCREMENT =
  64         new String ("increment");
  65 
  66 
  67     /**
  68      * An action which decrements a value.
  69      * @since 1.5
  70      */
  71     public static final String DECREMENT =
  72         new String ("decrement");
  73 
  74     /**
  75      * An action which causes a component to execute its default action.
  76      * @since 1.6
  77      */




  37  * method.  If the return value is not null, the object supports this interface.
  38  *
  39  * @see Accessible
  40  * @see Accessible#getAccessibleContext
  41  * @see AccessibleContext
  42  * @see AccessibleContext#getAccessibleAction
  43  *
  44  * @author      Peter Korn
  45  * @author      Hans Muller
  46  * @author      Willie Walker
  47  * @author      Lynn Monsanto
  48  */
  49 public interface AccessibleAction {
  50 
  51     /**
  52      * An action which causes a tree node to
  53      * collapse if expanded and expand if collapsed.
  54      * @since 1.5
  55      */
  56     public static final String TOGGLE_EXPAND =
  57         new String ("toggleexpand");
  58 
  59     /**
  60      * An action which increments a value.
  61      * @since 1.5
  62      */
  63     public static final String INCREMENT =
  64         new String ("increment");
  65 
  66 
  67     /**
  68      * An action which decrements a value.
  69      * @since 1.5
  70      */
  71     public static final String DECREMENT =
  72         new String ("decrement");
  73 
  74     /**
  75      * An action which causes a component to execute its default action.
  76      * @since 1.6
  77      */


< prev index next >