Print this page


Split Close
Expand all
Collapse all
          --- old/src/share/classes/javax/swing/TransferHandler.java
          +++ new/src/share/classes/javax/swing/TransferHandler.java
↓ open down ↓ 67 lines elided ↑ open up ↑
  68   68   * <p>
  69   69   * This class is implemented to provide a default behavior of transferring
  70   70   * a component property simply by specifying the name of the property in
  71   71   * the constructor.  For example, to transfer the foreground color from
  72   72   * one component to another either via the clipboard or a drag and drop operation
  73   73   * a <code>TransferHandler</code> can be constructed with the string "foreground".  The
  74   74   * built in support will use the color returned by <code>getForeground</code> as the source
  75   75   * of the transfer, and <code>setForeground</code> for the target of a transfer.
  76   76   * <p>
  77   77   * Please see
  78      - * <a href="http://docs.oracle.com/javase/tutorial/uiswing/dnd/index.html">
       78 + * <a href="https://docs.oracle.com/javase/tutorial/uiswing/dnd/index.html">
  79   79   * How to Use Drag and Drop and Data Transfer</a>,
  80   80   * a section in <em>The Java Tutorial</em>, for more information.
  81   81   *
  82   82   *
  83   83   * @author Timothy Prinzing
  84   84   * @author Shannon Hickey
  85   85   * @since 1.4
  86   86   */
  87   87  @SuppressWarnings("serial")
  88   88  public class TransferHandler implements Serializable {
↓ open down ↓ 1708 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX