src/java.desktop/macosx/classes/sun/lwawt/macosx/CDataTransferer.java

Print this page

        

*** 52,62 **** "RICH_TEXT", "HTML", "PDF", "URL", "PNG", ! "JFIF" }; static { Map<String, Long> nameMap = new HashMap<>(predefinedClipboardNames.length, 1.0f); Map<Long, String> formatMap = new HashMap<>(predefinedClipboardNames.length, 1.0f); --- 52,63 ---- "RICH_TEXT", "HTML", "PDF", "URL", "PNG", ! "JFIF", ! "XPICT" }; static { Map<String, Long> nameMap = new HashMap<>(predefinedClipboardNames.length, 1.0f); Map<Long, String> formatMap = new HashMap<>(predefinedClipboardNames.length, 1.0f);
*** 76,85 **** --- 77,87 ---- public static final int CF_HTML = 5; public static final int CF_PDF = 6; public static final int CF_URL = 7; public static final int CF_PNG = 8; public static final int CF_JPEG = 9; + public static final int CF_XPICT = 10; private CDataTransferer() {} private static CDataTransferer fTransferer;