author | yzheng |
Wed, 16 Oct 2019 16:54:56 +0200 | |
changeset 58650 | d068b1e534de |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
25782 | 1 |
# |
2 |
# This properties file is used to initialize the default |
|
3 |
# java.awt.datatransfer.SystemFlavorMap. It contains the Mac OS X platform-specific, |
|
4 |
# default mappings between common Mac OS X selection atoms and platform-independent |
|
5 |
# MIME type strings, which will be converted into |
|
6 |
# java.awt.datatransfer.DataFlavors. |
|
7 |
# |
|
8 |
# The standard format is: |
|
9 |
# |
|
10 |
# <native>=<MIME type>,<MIME type>, ... |
|
11 |
# |
|
12 |
# <native> should be a string identifier that the native platform will |
|
13 |
# recognize as a valid data format. <MIME type> should specify both a MIME |
|
14 |
# primary type and a MIME subtype separated by a '/'. The MIME type may include |
|
15 |
# parameters, where each parameter is a key/value pair separated by '=', and |
|
16 |
# where each parameter to the MIME type is separated by a ';'. |
|
17 |
# |
|
18 |
# Because SystemFlavorMap implements FlavorTable, developers are free to |
|
19 |
# duplicate DataFlavor values and set multiple values for a single native by |
|
20 |
# separating them with ",". If a mapping contains a duplicate key or value, |
|
21 |
# earlier mappings which included this key or value will be preferred. |
|
22 |
# |
|
23 |
# Mappings whose values specify DataFlavors with primary MIME types of |
|
24 |
# "text", and which support the charset parameter, should specify the exact |
|
25 |
# format in which the native platform expects the data. The "charset" |
|
26 |
# parameter specifies the char to byte encoding, the "eoln" parameter |
|
27 |
# specifies the end-of-line marker, and the "terminators" parameter specifies |
|
28 |
# the number of terminating NUL bytes. Note that "eoln" and "terminators" |
|
29 |
# are not standardized MIME type parameters. They are specific to this file |
|
30 |
# format ONLY. They will not appear in any of the DataFlavors returned by the |
|
31 |
# SystemFlavorMap at the Java level. |
|
32 |
# |
|
33 |
# If the "charset" parameter is omitted, or has zero length, the platform |
|
34 |
# default encoding is assumed. If the "eoln" parameter is omitted, or has |
|
35 |
# zero length, "\n" is assumed. If the "terminators" parameter is omitted, |
|
36 |
# or has a value less than zero, zero is assumed. |
|
37 |
# |
|
38 |
# Upon initialization, the data transfer subsystem will record the specified |
|
39 |
# details of the native text format, but the default SystemFlavorMap will |
|
40 |
# present a large set of synthesized DataFlavors which map, in both |
|
41 |
# directions, to the native. After receiving data from the application in one |
|
42 |
# of the synthetic DataFlavors, the data transfer subsystem will transform |
|
43 |
# the data stream into the format specified in this file before passing the |
|
44 |
# transformed stream to the native system. |
|
45 |
# |
|
46 |
# Mappings whose values specify DataFlavors with primary MIME types of |
|
47 |
# "text", but which do not support the charset parameter, will be treated as |
|
48 |
# opaque, 8-bit data. They will not undergo any transformation process, and |
|
49 |
# any "charset", "eoln", or "terminators" parameters specified in this file |
|
50 |
# will be ignored. |
|
51 |
# |
|
52 |
# See java.awt.datatransfer.DataFlavor.selectBestTextFlavor for a list of |
|
53 |
# text flavors which support the charset parameter. |
|
54 |
||
55 |
UTF8_STRING=text/plain;charset=UTF-8;eoln="\n";terminators=0 |
|
56 |
||
57 |
# The COMPOUND_TEXT support for inter-client text transfer is disabled by |
|
58 |
# default. The reason is that many native applications prefer this format over |
|
59 |
# other native text formats, but are unable to decode the textual data in this |
|
60 |
# format properly. This results in java-to-native text transfer failures. |
|
61 |
# To enable the COMPOUND_TEXT support for this JRE installation uncomment |
|
62 |
# the line below. |
|
63 |
||
64 |
# COMPOUND_TEXT=text/plain;charset=x-compound-text;eoln="\n";terminators=0 |
|
65 |
||
66 |
TEXT=text/plain;eoln="\n";terminators=0 |
|
67 |
STRING=text/plain;charset=UTF-8;eoln="\n";terminators=0 |
|
68 |
FILE_NAME=application/x-java-file-list;class=java.util.List |
|
69 |
text/uri-list=application/x-java-file-list;class=java.util.List |
|
70 |
PNG=image/x-java-image;class=java.awt.Image |
|
71 |
JFIF=image/x-java-image;class=java.awt.Image |
|
72 |
TIFF=image/x-java-image;class=java.awt.Image |
|
73 |
RICH_TEXT=text/rtf |
|
74 |
HTML=text/html;charset=utf-8;eoln="\r\n";terminators=1 |
|
33511
35ac6c6f6b6a
8136763: [macosx] java always returns only one value for "text/uri-list" dataflavor even if several files were copied
mcherkas
parents:
33251
diff
changeset
|
75 |
URL=application/x-java-url;class=java.net.URL |
35ac6c6f6b6a
8136763: [macosx] java always returns only one value for "text/uri-list" dataflavor even if several files were copied
mcherkas
parents:
33251
diff
changeset
|
76 |
FILE_NAME=text/uri-list;eoln="\r\n";terminators=1 |
35ac6c6f6b6a
8136763: [macosx] java always returns only one value for "text/uri-list" dataflavor even if several files were copied
mcherkas
parents:
33251
diff
changeset
|
77 |
URL=text/uri-list;eoln="\r\n";terminators=1 |
33251
938892557272
8086038: [macosx] No available data flavors when copying from Microsoft Word for Mac
mcherkas
parents:
28987
diff
changeset
|
78 |
XPICT=image/x-pict;class=java.io.InputStream |