jdk/src/java.desktop/share/classes/javax/swing/JTree.java
changeset 28059 e576535359cc
parent 26037 508779ce6619
child 29250 f9edd0824de6
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
  5573              * is not a leaf, there is at least one action which can be
  5573              * is not a leaf, there is at least one action which can be
  5574              * done (toggle expand), in addition to any available on the
  5574              * done (toggle expand), in addition to any available on the
  5575              * object behind the TreeCellRenderer.
  5575              * object behind the TreeCellRenderer.
  5576              *
  5576              *
  5577              * @param i zero-based index of actions
  5577              * @param i zero-based index of actions
  5578              * @return true if the the action was performed; else false.
  5578              * @return true if the action was performed; else false.
  5579              */
  5579              */
  5580             public boolean doAccessibleAction(int i) {
  5580             public boolean doAccessibleAction(int i) {
  5581                 if (i < 0 || i >= getAccessibleActionCount()) {
  5581                 if (i < 0 || i >= getAccessibleActionCount()) {
  5582                     return false;
  5582                     return false;
  5583                 }
  5583                 }