1 7 8 package javax.accessibility; 9 10 32 public interface AccessibleAction { 33 34 39 public static final String TOGGLE_EXPAND = 40 new String ("toggle expand"); 41 42 46 public static final String INCREMENT = 47 new String ("increment"); 48 49 50 54 public static final String DECREMENT = 55 new String ("decrement"); 56 57 64 public int getAccessibleActionCount(); 65 66 73 public String getAccessibleActionDescription(int i); 74 75 82 public boolean doAccessibleAction(int i); 83 } 84 | Popular Tags |