-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathJTree.java
3186 lines (2765 loc) · 81.4 KB
/
JTree.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* JTree.java
Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
package javax.swing;
import java.awt.Color;
import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.event.FocusListener;
import java.beans.PropertyChangeListener;
import java.io.Serializable;
import java.util.Enumeration;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.Locale;
import java.util.Vector;
import javax.accessibility.Accessible;
import javax.accessibility.AccessibleAction;
import javax.accessibility.AccessibleComponent;
import javax.accessibility.AccessibleContext;
import javax.accessibility.AccessibleRole;
import javax.accessibility.AccessibleSelection;
import javax.accessibility.AccessibleState;
import javax.accessibility.AccessibleStateSet;
import javax.accessibility.AccessibleText;
import javax.accessibility.AccessibleValue;
import javax.swing.event.TreeExpansionEvent;
import javax.swing.event.TreeExpansionListener;
import javax.swing.event.TreeModelEvent;
import javax.swing.event.TreeModelListener;
import javax.swing.event.TreeSelectionEvent;
import javax.swing.event.TreeSelectionListener;
import javax.swing.event.TreeWillExpandListener;
import javax.swing.plaf.TreeUI;
import javax.swing.text.Position;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.tree.DefaultTreeSelectionModel;
import javax.swing.tree.ExpandVetoException;
import javax.swing.tree.TreeCellEditor;
import javax.swing.tree.TreeCellRenderer;
import javax.swing.tree.TreeModel;
import javax.swing.tree.TreeNode;
import javax.swing.tree.TreePath;
import javax.swing.tree.TreeSelectionModel;
public class JTree extends JComponent implements Scrollable, Accessible
{
/**
* This class implements accessibility support for the JTree class. It
* provides an implementation of the Java Accessibility API appropriate
* to tree user-interface elements.
*/
protected class AccessibleJTree extends JComponent.AccessibleJComponent
implements AccessibleSelection, TreeSelectionListener, TreeModelListener,
TreeExpansionListener
{
/**
* This class implements accessibility support for the JTree child. It provides
* an implementation of the Java Accessibility API appropriate to tree nodes.
*/
protected class AccessibleJTreeNode extends AccessibleContext
implements Accessible, AccessibleComponent, AccessibleSelection,
AccessibleAction
{
private JTree tree;
private TreePath tp;
private Accessible acc;
private AccessibleStateSet states;
private Vector selectionList;
private Vector actionList;
private TreeModel mod;
private Cursor cursor;
/**
* Constructs an AccessibleJTreeNode
*
* @param t - the current tree
* @param p - the current path to be dealt with
* @param ap - the accessible object to use
*/
public AccessibleJTreeNode(JTree t, TreePath p, Accessible ap)
{
states = new AccessibleStateSet();
selectionList = new Vector();
actionList = new Vector();
mod = tree.getModel();
cursor = JTree.this.getCursor();
tree = t;
tp = p;
acc = ap;
// Add all the children of this path that may already be
// selected to the selection list.
TreePath[] selected = tree.getSelectionPaths();
for (int i = 0; i < selected.length; i++)
{
TreePath sel = selected[i];
if ((sel.getParentPath()).equals(tp))
selectionList.add(sel);
}
// Add all the actions available for a node to
// the action list.
actionList.add("EXPAND");
actionList.add("COLLAPSE");
actionList.add("EDIT");
actionList.add("SELECT");
actionList.add("DESELECT");
}
/**
* Adds the specified selected item in the object to the object's
* selection.
*
* @param i - the i-th child of this node.
*/
public void addAccessibleSelection(int i)
{
if (mod != null)
{
Object child = mod.getChild(tp.getLastPathComponent(), i);
if (child != null)
{
if (!states.contains(AccessibleState.MULTISELECTABLE))
clearAccessibleSelection();
selectionList.add(child);
tree.addSelectionPath(tp.pathByAddingChild(child));
}
}
}
/**
* Adds the specified focus listener to receive focus events
* from this component.
*
* @param l - the new focus listener
*/
public void addFocusListener(FocusListener l)
{
tree.addFocusListener(l);
}
/**
* Add a PropertyChangeListener to the listener list.
*
* @param l - the new property change listener
*/
public void addPropertyChangeListener(PropertyChangeListener l)
{
// Nothing to do here.
}
/**
* Clears the selection in the object, so that nothing in the
* object is selected.
*/
public void clearAccessibleSelection()
{
selectionList.clear();
}
/**
* Checks whether the specified point is within this object's
* bounds, where the point's x and y coordinates are defined to be
* relative to the coordinate system of the object.
*
* @param p - the point to check
* @return true if p is in the bounds
*/
public boolean contains(Point p)
{
return getBounds().contains(p);
}
/**
* Perform the specified Action on the tree node.
*
* @param i - the i-th action to perform
* @return true if the the action was performed; else false.
*/
public boolean doAccessibleAction(int i)
{
if (i >= actionList.size() || i < 0)
return false;
if (actionList.get(i).equals("EXPAND"))
tree.expandPath(tp);
else if (actionList.get(i).equals("COLLAPSE"))
tree.collapsePath(tp);
else if (actionList.get(i).equals("SELECT"))
tree.addSelectionPath(tp);
else if (actionList.get(i).equals("DESELECT"))
tree.removeSelectionPath(tp);
else if (actionList.get(i).equals("EDIT"))
tree.startEditingAtPath(tp);
else
return false;
return true;
}
/**
* Get the AccessibleAction associated with this object.
*
* @return the action
*/
public AccessibleAction getAccessibleAction()
{
return this;
}
/**
* Returns the number of accessible actions available in this tree node.
*
* @return the number of actions
*/
public int getAccessibleActionCount()
{
return actionList.size();
}
/**
* Return a description of the specified action of the tree node.
*
* @param i - the i-th action's description
* @return a description of the action
*/
public String getAccessibleActionDescription(int i)
{
if (i < 0 || i >= actionList.size())
return (actionList.get(i)).toString();
return super.getAccessibleDescription();
}
/**
* Returns the Accessible child, if one exists, contained at the
* local coordinate Point.
*
* @param p - the point of the accessible
* @return the accessible at point p if it exists
*/
public Accessible getAccessibleAt(Point p)
{
TreePath acc = tree.getClosestPathForLocation(p.x, p.y);
if (acc != null)
return new AccessibleJTreeNode(tree, acc, this);
return null;
}
/**
* Return the specified Accessible child of the object.
*
* @param i - the i-th child of the current path
* @return the child if it exists
*/
public Accessible getAccessibleChild(int i)
{
if (mod != null)
{
Object child = mod.getChild(tp.getLastPathComponent(), i);
if (child != null)
return new AccessibleJTreeNode(tree, tp.pathByAddingChild(child),
acc);
}
return null;
}
/**
* Returns the number of accessible children in the object.
*
* @return the number of children the current node has
*/
public int getAccessibleChildrenCount()
{
TreeModel mod = getModel();
if (mod != null)
return mod.getChildCount(tp.getLastPathComponent());
return 0;
}
/**
* Get the AccessibleComponent associated with this object.
*
* @return the accessible component if it is supported.
*/
public AccessibleComponent getAccessibleComponent()
{
return this;
}
/**
* Get the AccessibleContext associated with this tree node.
*
* @return an instance of this class
*/
public AccessibleContext getAccessibleContext()
{
return this;
}
/**
* Get the accessible description of this object.
*
* @return the accessible description
*/
public String getAccessibleDescription()
{
return super.getAccessibleDescription();
}
/**
* Get the index of this object in its accessible parent.
*
* @return the index of this in the parent.
*/
public int getAccessibleIndexInParent()
{
AccessibleContext parent = getAccessibleParent().getAccessibleContext();
if (parent != null)
for (int i = 0; i < parent.getAccessibleChildrenCount(); i++)
{
if ((parent.getAccessibleChild(i)).equals(this))
return i;
}
return -1;
}
/**
* Get the accessible name of this object.
*
* @return the accessible name
*/
public String getAccessibleName()
{
return super.getAccessibleName();
}
/**
* Get the Accessible parent of this object.
*
* @return the accessible parent if it exists.
*/
public Accessible getAccessibleParent()
{
return super.getAccessibleParent();
}
/**
* Get the role of this object.
*
* @return the accessible role
*/
public AccessibleRole getAccessibleRole()
{
return AccessibleJTree.this.getAccessibleRole();
}
/**
* Get the AccessibleSelection associated with this object if one exists.
*
* @return the accessible selection for this.
*/
public AccessibleSelection getAccessibleSelection()
{
return this;
}
/**
* Returns an Accessible representing the specified selected item
* in the object.
*
* @return the accessible representing a certain selected item.
*/
public Accessible getAccessibleSelection(int i)
{
if (i > 0 && i < getAccessibleSelectionCount())
return new AccessibleJTreeNode(tree,
tp.pathByAddingChild(selectionList.get(i)), acc);
return null;
}
/**
* Returns the number of items currently selected.
*
* @return the number of items selected.
*/
public int getAccessibleSelectionCount()
{
return selectionList.size();
}
/**
* Get the state set of this object.
*
* @return the state set for this object
*/
public AccessibleStateSet getAccessibleStateSet()
{
if (isVisible())
states.add(AccessibleState.VISIBLE);
if (tree.isCollapsed(tp))
states.add(AccessibleState.COLLAPSED);
if (tree.isEditable())
states.add(AccessibleState.EDITABLE);
if (mod != null &&
!mod.isLeaf(tp.getLastPathComponent()))
states.add(AccessibleState.EXPANDABLE);
if (tree.isExpanded(tp))
states.add(AccessibleState.EXPANDED);
if (isFocusable())
states.add(AccessibleState.FOCUSABLE);
if (hasFocus())
states.add(AccessibleState.FOCUSED);
if (tree.getSelectionModel().getSelectionMode() !=
TreeSelectionModel.SINGLE_TREE_SELECTION)
states.add(AccessibleState.MULTISELECTABLE);
if (tree.isOpaque())
states.add(AccessibleState.OPAQUE);
if (tree.isPathSelected(tp))
states.add(AccessibleState.SELECTED);
if (isShowing())
states.add(AccessibleState.SHOWING);
states.add(AccessibleState.SELECTABLE);
return states;
}
/**
* Get the AccessibleText associated with this object if one exists.
*
* @return the accessible text
*/
public AccessibleText getAccessibleText()
{
return super.getAccessibleText();
}
/**
* Get the AccessibleValue associated with this object if one exists.
*
* @return the accessible value if it exists
*/
public AccessibleValue getAccessibleValue()
{
return super.getAccessibleValue();
}
/**
* Get the background color of this object.
*
* @return the color of the background.
*/
public Color getBackground()
{
return tree.getBackground();
}
/**
* Gets the bounds of this object in the form of a Rectangle object.
*
* @return the bounds of the current node.
*/
public Rectangle getBounds()
{
return tree.getPathBounds(tp);
}
/**
* Gets the Cursor of this object.
*
* @return the cursor for the current node
*/
public Cursor getCursor()
{
return cursor;
}
/**
* Gets the Font of this object.
*
* @return the font for the current node
*/
public Font getFont()
{
return tree.getFont();
}
/**
* Gets the FontMetrics of this object.
*
* @param f - the current font.
* @return the font metrics for the given font.
*/
public FontMetrics getFontMetrics(Font f)
{
return tree.getFontMetrics(f);
}
/**
* Get the foreground color of this object.
*
* @return the foreground for this object.
*/
public Color getForeground()
{
return tree.getForeground();
}
/**
* Gets the locale of the component.
*
* @return the locale of the component.
*/
public Locale getLocale()
{
return tree.getLocale();
}
/**
* Gets the location of the object relative to the
* parent in the form of a point specifying the object's
* top-left corner in the screen's coordinate space.
*
* @return the location of the current node.
*/
public Point getLocation()
{
return getLocationInJTree();
}
/**
* Returns the location in the tree.
*
* @return the location in the JTree.
*/
protected Point getLocationInJTree()
{
Rectangle bounds = tree.getPathBounds(tp);
return new Point(bounds.x, bounds.y);
}
/**
* Returns the location of the object on the screen.
*
* @return the location of the object on the screen.
*/
public Point getLocationOnScreen()
{
Point loc = getLocation();
SwingUtilities.convertPointToScreen(loc, tree);
return loc;
}
/**
* Returns the size of this object in the form of a Dimension object.
*
* @return the size of the object
*/
public Dimension getSize()
{
Rectangle b = getBounds();
return b.getSize();
}
/**
* Returns true if the current child of this object is selected.
*
* @param i - the child of the current node
* @return true if the child is selected.
*/
public boolean isAccessibleChildSelected(int i)
{
Object child = mod.getChild(tp.getLastPathComponent(), i);
if (child != null)
return tree.isPathSelected(tp.pathByAddingChild(child));
return false;
}
/**
* Determines if the object is enabled.
*
* @return true if the tree is enabled
*/
public boolean isEnabled()
{
return tree.isEnabled();
}
/**
* Returns whether this object can accept focus or not.
*
* @return true, it is always focus traversable
*/
public boolean isFocusTraversable()
{
return true;
}
/**
* Determines if the object is showing.
*
* @return true if the object is visible and the
* parent is visible.
*/
public boolean isShowing()
{
return isVisible() && tree.isShowing();
}
/**
* Determines if the object is visible.
*
* @return true if the object is visible.
*/
public boolean isVisible()
{
return tree.isVisible(tp);
}
/**
* Removes the specified selected item in the object from the
* object's selection.
*
* @param i - the specified item to remove
*/
public void removeAccessibleSelection(int i)
{
if (mod != null)
{
Object child = mod.getChild(tp.getLastPathComponent(), i);
if (child != null)
{
if (!states.contains(AccessibleState.MULTISELECTABLE))
clearAccessibleSelection();
if (selectionList.contains(child))
{
selectionList.remove(child);
tree.removeSelectionPath(tp.pathByAddingChild(child));
}
}
}
}
/**
* Removes the specified focus listener so it no longer receives focus
* events from this component.
*
* @param l - the focus listener to remove
*/
public void removeFocusListener(FocusListener l)
{
tree.removeFocusListener(l);
}
/**
* Remove a PropertyChangeListener from the listener list.
*
* @param l - the property change listener to remove.
*/
public void removePropertyChangeListener(PropertyChangeListener l)
{
// Nothing to do here.
}
/**
* Requests focus for this object.
*/
public void requestFocus()
{
tree.requestFocus();
}
/**
* Causes every selected item in the object to be selected if the object
* supports multiple selections.
*/
public void selectAllAccessibleSelection()
{
Object parent = tp.getLastPathComponent();
if (mod != null)
{
for (int i = 0; i < mod.getChildCount(parent); i++)
{
Object child = mod.getChild(parent, i);
if (child != null)
{
if (!states.contains(AccessibleState.MULTISELECTABLE))
clearAccessibleSelection();
if (selectionList.contains(child))
{
selectionList.add(child);
tree.addSelectionPath(tp.pathByAddingChild(child));
}
}
}
}
}
/**
* Set the accessible description of this object.
*
* @param s - the string to set the accessible description to.
*/
public void setAccessibleDescription(String s)
{
super.setAccessibleDescription(s);
}
/**
* Set the localized accessible name of this object.
*
* @param s - the string to set the accessible name to.
*/
public void setAccessibleName(String s)
{
super.setAccessibleName(s);
}
/**
* Set the background color of this object.
*
* @param c - the color to set the background to.
*/
public void setBackground(Color c)
{
// Nothing to do here.
}
/**
* Sets the bounds of this object in the form of a Rectangle object.
*
* @param r - the bounds to set the object o
*/
public void setBounds(Rectangle r)
{
// Nothing to do here.
}
/**
* Sets the Cursor of this object.
*
* @param c - the new cursor
*/
public void setCursor(Cursor c)
{
cursor = c;
}
/**
* Sets the enabled state of the object.
*
* @param b - boolean to enable or disable object
*/
public void setEnabled(boolean b)
{
// Nothing to do here.
}
/**
* Sets the Font of this object.
*
* @param f - the new font.
*/
public void setFont(Font f)
{
// Nothing to do here.
}
/**
* Sets the foreground color of this object.
*
* @param c - the new foreground color.
*/
public void setForeground(Color c)
{
// Nothing to do here.
}
/**
* Sets the location of the object relative to the parent.
*
* @param p - the new location for the object.
*/
public void setLocation(Point p)
{
// Nothing to do here.
}
/**
* Resizes this object so that it has width and height.
*
* @param d - the new size for the object.
*/
public void setSize(Dimension d)
{
// Nothing to do here.
}
/**
* Sets the visible state of the object.
*
* @param b - sets the objects visibility.
*/
public void setVisible(boolean b)
{
// Nothing to do here.
}
}
/**
* Constructor
*/
public AccessibleJTree()
{
// Nothing to do here.
}
/**
* Adds the specified selected item in the object to the object's selection.
*
* @param i - the row to add to the tree's selection
*/
public void addAccessibleSelection(int i)
{
addSelectionInterval(i, i);
}
/**
* Clears the selection in the object, so that nothing in the object is selected.
*/
public void clearAccessibleSelection()
{
clearSelection();
}
/**
* Fire a visible data property change notification.
*/
public void fireVisibleDataPropertyChange()
{
treeDidChange();
}
/**
* Returns the Accessible child, if one exists, contained at the local
* coordinate Point.
*
* @param p - the point of the accessible to get.
* @return the accessible at point p.
*/
public Accessible getAccessibleAt(Point p)
{
TreePath tp = getClosestPathForLocation(p.x, p.y);
if (tp != null)
return new AccessibleJTreeNode(JTree.this, tp, null);
return null;
}
/**
* Return the nth Accessible child of the object.
*
* @param i - the accessible child to get
* @return the i-th child
*/
public Accessible getAccessibleChild(int i)
{
return null;
}
/**
* Returns the number of top-level children nodes of this JTree.
*
* @return the number of top-level children
*/
public int getAccessibleChildrenCount()
{
TreeModel model = getModel();
if (model != null)
return model.getChildCount(model.getRoot());
return 0;
}
/**
* Get the index of this object in its accessible parent.
*
* @return the index of this object.
*/
public int getAccessibleIndexInParent()
{
return 0;
}
/**
* Get the role of this object.
*
* @return the role of this object
*/
public AccessibleRole getAccessibleRole()
{
return AccessibleRole.TREE;
}
/**
* Get the AccessibleSelection associated with this object.
*
* @return the accessible selection of the tree
*/
public AccessibleSelection getAccessibleSelection()
{
TreeModel mod = getModel();
if (mod != null)
return (new AccessibleJTreeNode(JTree.this,
new TreePath(mod.getRoot()), null)).getAccessibleSelection();
return null;
}
/**
* Returns an Accessible representing the specified selected item in the object.
*
* @return the i-th accessible in the selection
*/
public Accessible getAccessibleSelection(int i)
{
TreeModel mod = getModel();
if (mod != null)
return (new AccessibleJTreeNode(JTree.this,
new TreePath(mod.getRoot()), null)).getAccessibleSelection(i);
return null;
}
/**
* Returns the number of items currently selected.
*
* @return the number of selected accessibles.
*/
public int getAccessibleSelectionCount()
{
return getSelectionCount();
}
/**
* Returns true if the current child of this object is selected.
*
* @param i - the child of this object
* @return true if the i-th child is selected.
*/
public boolean isAccessibleChildSelected(int i)
{
// Nothing to do here.
return false;
}
/**
* Removes the specified selected item in the object from the object's
* selection.
*
* @param i - the i-th selected item to remove