Print this page


Split Close
Expand all
Collapse all
          --- old/src/share/classes/javax/swing/JTree.java
          +++ new/src/share/classes/javax/swing/JTree.java
↓ open down ↓ 36 lines elided ↑ open up ↑
  37   37  import javax.accessibility.*;
  38   38  import sun.swing.SwingUtilities2;
  39   39  import sun.swing.SwingUtilities2.Section;
  40   40  import static sun.swing.SwingUtilities2.Section.*;
  41   41  
  42   42  
  43   43  /**
  44   44   * <a name="jtree_description"></a>
  45   45   * A control that displays a set of hierarchical data as an outline.
  46   46   * You can find task-oriented documentation and examples of using trees in
  47      - * <a href="http://docs.oracle.com/javase/tutorial/uiswing/components/tree.html">How to Use Trees</a>,
       47 + * <a href="https://docs.oracle.com/javase/tutorial/uiswing/components/tree.html">How to Use Trees</a>,
  48   48   * a section in <em>The Java Tutorial.</em>
  49   49   * <p>
  50   50   * A specific node in a tree can be identified either by a
  51   51   * <code>TreePath</code> (an object
  52   52   * that encapsulates a node and all of its ancestors), or by its
  53   53   * display row, where each row in the display area displays one node.
  54   54   * An <i>expanded</i> node is a non-leaf node (as identified by
  55   55   * <code>TreeModel.isLeaf(node)</code> returning false) that will displays
  56   56   * its children when all its ancestors are <i>expanded</i>.
  57   57   * A <i>collapsed</i>
↓ open down ↓ 5471 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX