src/java.datatransfer/share/classes/java/awt/datatransfer/package-info.java
author chagedorn
Thu, 12 Sep 2019 12:23:25 +0200
changeset 58104 46e11f978852
parent 47216 71c04702a3d5
permissions -rw-r--r--
8220416: Comparison of klass pointers is not optimized any more Summary: Enables dead klass pointer optimization (since JDK-6964458) again. Reviewed-by: roland, thartmann
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
44135
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
     1
/*
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
     2
 * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
     4
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    10
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    15
 * accompanied this code).
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    16
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    20
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    23
 * questions.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    24
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
44135
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    26
/**
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    27
 * Provides interfaces and classes for transferring data between and within
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    28
 * applications. It defines the notion of a "transferable" object, which is an
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    29
 * object capable of being transferred between or within applications. An object
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    30
 * identifies itself as being transferable by implementing the Transferable
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    31
 * interface.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    32
 * <p>
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    33
 * It also provides a clipboard mechanism, which is an object that temporarily
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    34
 * holds a transferable object that can be transferred between or within an
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    35
 * application. The clipboard is typically used for copy and paste operations.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    36
 * Although it is possible to create a clipboard to use within an application,
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    37
 * most applications will use the system clipboard to ensure the data can be
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    38
 * transferred across applications running on the platform.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    39
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    40
 * @since 1.1
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    41
 */
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 28987
diff changeset
    42
package java.awt.datatransfer;