Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.desktop.jmod - Desktop Module
JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module.
JDK 11 Desktop module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.desktop.jmod.
JDK 11 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Desktop module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.desktop.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/imageio/plugins/bmp/BMPMetadataFormat.java
/* * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.imageio.plugins.bmp; import java.util.Arrays; import javax.imageio.ImageTypeSpecifier; import javax.imageio.metadata.IIOMetadataFormat; import javax.imageio.metadata.IIOMetadataFormatImpl; public class BMPMetadataFormat extends IIOMetadataFormatImpl { private static IIOMetadataFormat instance = null; private BMPMetadataFormat() { super(BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_SOME); // root -> ImageDescriptor addElement("ImageDescriptor", BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_EMPTY); addAttribute("ImageDescriptor", "bmpVersion", DATATYPE_STRING, true, null); addAttribute("ImageDescriptor", "width", DATATYPE_INTEGER, true, null, "0", "65535", true, true); addAttribute("ImageDescriptor", "height", DATATYPE_INTEGER, true, null, "1", "65535", true, true); addAttribute("ImageDescriptor", "bitsPerPixel", DATATYPE_INTEGER, true, null, "1", "65535", true, true); addAttribute("ImageDescriptor", "compression", DATATYPE_INTEGER, false, null); addAttribute("ImageDescriptor", "imageSize", DATATYPE_INTEGER, true, null, "1", "65535", true, true); addElement("PixelsPerMeter", BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_EMPTY); addAttribute("PixelsPerMeter", "X", DATATYPE_INTEGER, false, null, "1", "65535", true, true); addAttribute("PixelsPerMeter", "Y", DATATYPE_INTEGER, false, null, "1", "65535", true, true); addElement("ColorsUsed", BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_EMPTY); addAttribute("ColorsUsed", "value", DATATYPE_INTEGER, true, null, "0", "65535", true, true); addElement("ColorsImportant", BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_EMPTY); addAttribute("ColorsImportant", "value", DATATYPE_INTEGER, false, null, "0", "65535", true, true); addElement("BI_BITFIELDS_Mask", BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_EMPTY); addAttribute("BI_BITFIELDS_Mask", "red", DATATYPE_INTEGER, false, null, "0", "65535", true, true); addAttribute("BI_BITFIELDS_Mask", "green", DATATYPE_INTEGER, false, null, "0", "65535", true, true); addAttribute("BI_BITFIELDS_Mask", "blue", DATATYPE_INTEGER, false, null, "0", "65535", true, true); addElement("ColorSpace", BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_EMPTY); addAttribute("ColorSpace", "value", DATATYPE_INTEGER, false, null, "0", "65535", true, true); addElement("LCS_CALIBRATED_RGB", BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_EMPTY); /// Should the max value be 1.7976931348623157e+308 ? addAttribute("LCS_CALIBRATED_RGB", "redX", DATATYPE_DOUBLE, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB", "redY", DATATYPE_DOUBLE, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB", "redZ", DATATYPE_DOUBLE, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB", "greenX", DATATYPE_DOUBLE, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB", "greenY", DATATYPE_DOUBLE, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB", "greenZ", DATATYPE_DOUBLE, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB", "blueX", DATATYPE_DOUBLE, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB", "blueY", DATATYPE_DOUBLE, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB", "blueZ", DATATYPE_DOUBLE, false, null, "0", "65535", true, true); addElement("LCS_CALIBRATED_RGB_GAMMA", BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_EMPTY); addAttribute("LCS_CALIBRATED_RGB_GAMMA","red", DATATYPE_INTEGER, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB_GAMMA","green", DATATYPE_INTEGER, false, null, "0", "65535", true, true); addAttribute("LCS_CALIBRATED_RGB_GAMMA","blue", DATATYPE_INTEGER, false, null, "0", "65535", true, true); addElement("Intent", BMPMetadata.nativeMetadataFormatName, CHILD_POLICY_EMPTY); addAttribute("Intent", "value", DATATYPE_INTEGER, false, null, "0", "65535", true, true); // root -> Palette addElement("Palette", BMPMetadata.nativeMetadataFormatName, 2, 256); addAttribute("Palette", "sizeOfPalette", DATATYPE_INTEGER, true, null); addBooleanAttribute("Palette", "sortFlag", false, false); // root -> Palette -> PaletteEntry addElement("PaletteEntry", "Palette", CHILD_POLICY_EMPTY); addAttribute("PaletteEntry", "index", DATATYPE_INTEGER, true, null, "0", "255", true, true); addAttribute("PaletteEntry", "red", DATATYPE_INTEGER, true, null, "0", "255", true, true); addAttribute("PaletteEntry", "green", DATATYPE_INTEGER, true, null, "0", "255", true, true); addAttribute("PaletteEntry", "blue", DATATYPE_INTEGER, true, null, "0", "255", true, true); // root -> CommentExtensions addElement("CommentExtensions", BMPMetadata.nativeMetadataFormatName, 1, Integer.MAX_VALUE); // root -> CommentExtensions -> CommentExtension addElement("CommentExtension", "CommentExtensions", CHILD_POLICY_EMPTY); addAttribute("CommentExtension", "value", DATATYPE_STRING, true, null); } public boolean canNodeAppear(String elementName, ImageTypeSpecifier imageType) { return true; } public static synchronized IIOMetadataFormat getInstance() { if (instance == null) { instance = new BMPMetadataFormat(); } return instance; } }
⏎ com/sun/imageio/plugins/bmp/BMPMetadataFormat.java
Or download all of them as a single archive file:
File name: java.desktop-11.0.1-src.zip File size: 7974380 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.instrument.jmod - Instrument Module
2022-08-06, 160166👍, 5💬
Popular Posts:
How to download and install JDK (Java Development Kit) 1.3? If you want to write Java applications, ...
MXP1 is a stable XmlPull parsing engine that is based on ideas from XPP and in particular XPP2 but c...
What Is commons-collections4-4.4 .jar?commons-collections4-4.4 .jaris the JAR file for Apache Common...
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
What Is commons-lang3-3.1.jar? commons-lang3-3.1.jar is the JAR file for Apache Commons Lang 3.1, wh...