Class Clipboard

java.lang.Object
java.awt.datatransfer.Clipboard

public class Clipboard extends Object
A class that implements a mechanism to transfer data using cut/copy/paste operations.

FlavorListeners may be registered on an instance of the Clipboard class to be notified about changes to the set of DataFlavors available on this clipboard (see addFlavorListener(FlavorListener)).

Since:
1.1
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected Transferable
    Contents of the clipboard.
    protected ClipboardOwner
    The owner of the clipboard.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a clipboard object.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Registers the specified FlavorListener to receive FlavorEvents from this clipboard.
    Returns an array of DataFlavors in which the current contents of this clipboard can be provided.
    getContents(Object requestor)
    Returns a transferable object representing the current contents of the clipboard.
    Returns an object representing the current contents of this clipboard in the specified DataFlavor.
    Returns an array of all the FlavorListeners currently registered on this Clipboard.
    Returns the name of this clipboard object.
    boolean
    Returns whether or not the current contents of this clipboard can be provided in the specified DataFlavor.
    void
    Removes the specified FlavorListener so that it no longer receives FlavorEvents from this Clipboard.
    void
    Sets the current contents of the clipboard to the specified transferable object and registers the specified clipboard owner as the owner of the new contents.

    Methods declared in class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    Modifier and Type
    Method
    Description
    protected Object
    Creates and returns a copy of this object.
    boolean
    Indicates whether some other object is "equal to" this one.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Finalization is deprecated and subject to removal in a future release.
    final Class<?>
    Returns the runtime class of this Object.
    int
    Returns a hash code value for this object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    Returns a string representation of the object.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(long timeoutMillis)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
    final void
    wait(long timeoutMillis, int nanos)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
  • Field Details

    • owner

      protected ClipboardOwner owner
      The owner of the clipboard.
    • contents

      protected Transferable contents
      Contents of the clipboard.
  • Constructor Details

  • Method Details

    • getName

      public String getName()
      Returns the name of this clipboard object.
      Returns:
      the name of this clipboard object
      See Also:
    • setContents

      public void setContents(Transferable contents, ClipboardOwner owner)
      Sets the current contents of the clipboard to the specified transferable object and registers the specified clipboard owner as the owner of the new contents.

      If there is an existing owner different from the argument owner, that owner is notified that it no longer holds ownership of the clipboard contents via an invocation of ClipboardOwner.lostOwnership() on that owner. An implementation of setContents() is free not to invoke lostOwnership() directly from this method. For example, lostOwnership() may be invoked later on a different thread. The same applies to FlavorListeners registered on this clipboard.

      The method throws IllegalStateException if the clipboard is currently unavailable. For example, on some platforms, the system clipboard is unavailable while it is accessed by another application.

      Parameters:
      contents - the transferable object representing the clipboard content
      owner - the object which owns the clipboard content
      Throws:
      IllegalStateException - if the clipboard is currently unavailable
      See Also:
    • getContents

      public Transferable getContents(Object requestor)
      Returns a transferable object representing the current contents of the clipboard. If the clipboard currently has no contents, it returns null. The parameter Object requestor is not currently used. The method throws IllegalStateException if the clipboard is currently unavailable. For example, on some platforms, the system clipboard is unavailable while it is accessed by another application.
      Parameters:
      requestor - the object requesting the clip data (not used)
      Returns:
      the current transferable object on the clipboard
      Throws:
      IllegalStateException - if the clipboard is currently unavailable
      See Also:
    • getAvailableDataFlavors

      public DataFlavor[] getAvailableDataFlavors()
      Returns an array of DataFlavors in which the current contents of this clipboard can be provided. If there are no DataFlavors available, this method returns a zero-length array.
      Returns:
      an array of DataFlavors in which the current contents of this clipboard can be provided
      Throws:
      IllegalStateException - if this clipboard is currently unavailable
      Since:
      1.5
    • isDataFlavorAvailable

      public boolean isDataFlavorAvailable(DataFlavor flavor)
      Returns whether or not the current contents of this clipboard can be provided in the specified DataFlavor.
      Parameters:
      flavor - the requested DataFlavor for the contents
      Returns:
      true if the current contents of this clipboard can be provided in the specified DataFlavor; false otherwise
      Throws:
      NullPointerException - if flavor is null
      IllegalStateException - if this clipboard is currently unavailable
      Since:
      1.5
    • getData

      public Object getData(DataFlavor flavor) throws UnsupportedFlavorException, IOException
      Returns an object representing the current contents of this clipboard in the specified DataFlavor. The class of the object returned is defined by the representation class of flavor.
      Parameters:
      flavor - the requested DataFlavor for the contents
      Returns:
      an object representing the current contents of this clipboard in the specified DataFlavor
      Throws:
      NullPointerException - if flavor is null
      IllegalStateException - if this clipboard is currently unavailable
      UnsupportedFlavorException - if the requested DataFlavor is not available
      IOException - if the data in the requested DataFlavor can not be retrieved
      Since:
      1.5
      See Also:
    • addFlavorListener

      public void addFlavorListener(FlavorListener listener)
      Registers the specified FlavorListener to receive FlavorEvents from this clipboard. If listener is null, no exception is thrown and no action is performed.
      Parameters:
      listener - the listener to be added
      Since:
      1.5
      See Also:
    • removeFlavorListener

      public void removeFlavorListener(FlavorListener listener)
      Removes the specified FlavorListener so that it no longer receives FlavorEvents from this Clipboard. This method performs no function, nor does it throw an exception, if the listener specified by the argument was not previously added to this Clipboard. If listener is null, no exception is thrown and no action is performed.
      Parameters:
      listener - the listener to be removed
      Since:
      1.5
      See Also:
    • getFlavorListeners

      public FlavorListener[] getFlavorListeners()
      Returns an array of all the FlavorListeners currently registered on this Clipboard.
      Returns:
      all of this clipboard's FlavorListeners or an empty array if no listeners are currently registered
      Since:
      1.5
      See Also: