Print this page


Split Close
Expand all
Collapse all
          --- old/src/share/classes/java/awt/datatransfer/Transferable.java
          +++ new/src/share/classes/java/awt/datatransfer/Transferable.java
↓ open down ↓ 24 lines elided ↑ open up ↑
  25   25  
  26   26  package java.awt.datatransfer;
  27   27  
  28   28  import java.io.IOException;
  29   29  
  30   30  /**
  31   31   * Defines the interface for classes that can be used to provide data
  32   32   * for a transfer operation.
  33   33   * <p>
  34   34   * For information on using data transfer with Swing, see
  35      - * <a href="http://docs.oracle.com/javase/tutorial/uiswing/dnd/index.html">
       35 + * <a href="https://docs.oracle.com/javase/tutorial/uiswing/dnd/index.html">
  36   36   * How to Use Drag and Drop and Data Transfer</a>,
  37   37   * a section in <em>The Java Tutorial</em>, for more information.
  38   38   *
  39   39   * @author      Amy Fowler
  40   40   */
  41   41  
  42   42  public interface Transferable {
  43   43  
  44   44      /**
  45   45       * Returns an array of DataFlavor objects indicating the flavors the data
↓ open down ↓ 28 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX