Print this page


Split Close
Expand all
Collapse all
          --- old/src/share/classes/javax/swing/JTabbedPane.java
          +++ new/src/share/classes/javax/swing/JTabbedPane.java
↓ open down ↓ 35 lines elided ↑ open up ↑
  36   36  
  37   37  import java.io.Serializable;
  38   38  import java.io.ObjectOutputStream;
  39   39  import java.io.ObjectInputStream;
  40   40  import java.io.IOException;
  41   41  
  42   42  /**
  43   43   * A component that lets the user switch between a group of components by
  44   44   * clicking on a tab with a given title and/or icon.
  45   45   * For examples and information on using tabbed panes see
  46      - * <a href="http://docs.oracle.com/javase/tutorial/uiswing/components/tabbedpane.html">How to Use Tabbed Panes</a>,
       46 + * <a href="https://docs.oracle.com/javase/tutorial/uiswing/components/tabbedpane.html">How to Use Tabbed Panes</a>,
  47   47   * a section in <em>The Java Tutorial</em>.
  48   48   * <p>
  49   49   * Tabs/components are added to a <code>TabbedPane</code> object by using the
  50   50   * <code>addTab</code> and <code>insertTab</code> methods.
  51   51   * A tab is represented by an index corresponding
  52   52   * to the position it was added in, where the first tab has an index equal to 0
  53   53   * and the last tab has an index equal to the tab count minus 1.
  54   54   * <p>
  55   55   * The <code>TabbedPane</code> uses a <code>SingleSelectionModel</code>
  56   56   * to represent the set
↓ open down ↓ 2362 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX