author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 45655 | jdk/src/java.datatransfer/share/classes/java/awt/datatransfer/FlavorMap.java@02c95aa8a53a |
permissions | -rw-r--r-- |
2 | 1 |
/* |
45655
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package java.awt.datatransfer; |
|
27 |
||
28 |
import java.util.Map; |
|
29 |
||
30 |
/** |
|
45655
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
31 |
* A two-way Map between "natives" (Strings), which correspond to |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
32 |
* platform-specific data formats, and "flavors" (DataFlavors), which correspond |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
33 |
* to platform-independent MIME types. FlavorMaps need not be symmetric, but |
2 | 34 |
* typically are. |
35 |
* |
|
36 |
* @since 1.2 |
|
37 |
*/ |
|
38 |
public interface FlavorMap { |
|
39 |
||
40 |
/** |
|
45655
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
41 |
* Returns a {@code Map} of the specified {@code DataFlavor}s to their |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
42 |
* corresponding {@code String} native. The returned {@code Map} is a |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
43 |
* modifiable copy of this {@code FlavorMap}'s internal data. Client code is |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
44 |
* free to modify the {@code Map} without affecting this object. |
2 | 45 |
* |
45655
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
46 |
* @param flavors an array of {@code DataFlavor}s which will be the key set |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
47 |
* of the returned {@code Map}. If {@code null} is specified, a |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
48 |
* mapping of all {@code DataFlavor}s currently known to this |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
49 |
* {@code FlavorMap} to their corresponding {@code String} natives |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
50 |
* will be returned. |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
51 |
* @return a {@code java.util.Map} of {@code DataFlavor}s to {@code String} |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
52 |
* natives |
2 | 53 |
*/ |
45655
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
54 |
Map<DataFlavor, String> getNativesForFlavors(DataFlavor[] flavors); |
2 | 55 |
|
56 |
/** |
|
45655
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
57 |
* Returns a {@code Map} of the specified {@code String} natives to their |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
58 |
* corresponding {@code DataFlavor}. The returned {@code Map} is a |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
59 |
* modifiable copy of this {@code FlavorMap}'s internal data. Client code is |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
60 |
* free to modify the {@code Map} without affecting this object. |
2 | 61 |
* |
45655
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
62 |
* @param natives an array of {@code String}s which will be the key set of |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
63 |
* the returned {@code Map}. If {@code null} is specified, a mapping |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
64 |
* of all {@code String} natives currently known to this |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
65 |
* {@code FlavorMap} to their corresponding {@code DataFlavor}s will |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
66 |
* be returned. |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
67 |
* @return a {@code java.util.Map} of {@code String} natives to |
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
68 |
* {@code DataFlavor}s |
2 | 69 |
*/ |
45655
02c95aa8a53a
8180889: Cleanup of javadoc in java.datatransfer module
serb
parents:
28987
diff
changeset
|
70 |
Map<String, DataFlavor> getFlavorsForNatives(String[] natives); |
2 | 71 |
} |