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:
JRE 8 rt.jar - javax.* Package Source Code
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries.
JRE (Java Runtime) 8 is the runtime environment included in JDK 8.
JRE 8 rt.jar libraries are divided into 6 packages:
com.* - Internal Oracle and Sun Microsystems libraries java.* - Standard Java API libraries. javax.* - Extended Java API libraries. jdk.* - JDK supporting libraries. org.* - Third party libraries. sun.* - Old libraries developed by Sun Microsystems.
JAR File Information:
Directory of C:\fyicenter\jdk-1.8.0_191\jre\lib 63,596,151 rt.jar
Here is the list of Java classes of the javax.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ javax/imageio/spi/IIOServiceProvider.java
/* * Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.imageio.spi; import java.util.Locale; import javax.imageio.spi.RegisterableService; import javax.imageio.spi.ServiceRegistry; /** * A superinterface for functionality common to all Image I/O service * provider interfaces (SPIs). For more information on service * provider classes, see the class comment for the * <code>IIORegistry</code> class. * * @see IIORegistry * @see javax.imageio.spi.ImageReaderSpi * @see javax.imageio.spi.ImageWriterSpi * @see javax.imageio.spi.ImageTranscoderSpi * @see javax.imageio.spi.ImageInputStreamSpi * */ public abstract class IIOServiceProvider implements RegisterableService { /** * A <code>String</code> to be returned from * <code>getVendorName</code>, initially <code>null</code>. * Constructors should set this to a non-<code>null</code> value. */ protected String vendorName; /** * A <code>String</code> to be returned from * <code>getVersion</code>, initially null. Constructors should * set this to a non-<code>null</code> value. */ protected String version; /** * Constructs an <code>IIOServiceProvider</code> with a given * vendor name and version identifier. * * @param vendorName the vendor name. * @param version a version identifier. * * @exception IllegalArgumentException if <code>vendorName</code> * is <code>null</code>. * @exception IllegalArgumentException if <code>version</code> * is <code>null</code>. */ public IIOServiceProvider(String vendorName, String version) { if (vendorName == null) { throw new IllegalArgumentException("vendorName == null!"); } if (version == null) { throw new IllegalArgumentException("version == null!"); } this.vendorName = vendorName; this.version = version; } /** * Constructs a blank <code>IIOServiceProvider</code>. It is up * to the subclass to initialize instance variables and/or * override method implementations in order to ensure that the * <code>getVendorName</code> and <code>getVersion</code> methods * will return non-<code>null</code> values. */ public IIOServiceProvider() { } /** * A callback that will be called exactly once after the Spi class * has been instantiated and registered in a * <code>ServiceRegistry</code>. This may be used to verify that * the environment is suitable for this service, for example that * native libraries can be loaded. If the service cannot function * in the environment where it finds itself, it should deregister * itself from the registry. * * <p> Only the registry should call this method. * * <p> The default implementation does nothing. * * @see ServiceRegistry#registerServiceProvider(Object provider) */ public void onRegistration(ServiceRegistry registry, Class<?> category) {} /** * A callback that will be whenever the Spi class has been * deregistered from a <code>ServiceRegistry</code>. * * <p> Only the registry should call this method. * * <p> The default implementation does nothing. * * @see ServiceRegistry#deregisterServiceProvider(Object provider) */ public void onDeregistration(ServiceRegistry registry, Class<?> category) {} /** * Returns the name of the vendor responsible for creating this * service provider and its associated implementation. Because * the vendor name may be used to select a service provider, * it is not localized. * * <p> The default implementation returns the value of the * <code>vendorName</code> instance variable. * * @return a non-<code>null</code> <code>String</code> containing * the name of the vendor. */ public String getVendorName() { return vendorName; } /** * Returns a string describing the version * number of this service provider and its associated * implementation. Because the version may be used by transcoders * to identify the service providers they understand, this method * is not localized. * * <p> The default implementation returns the value of the * <code>version</code> instance variable. * * @return a non-<code>null</code> <code>String</code> containing * the version of this service provider. */ public String getVersion() { return version; } /** * Returns a brief, human-readable description of this service * provider and its associated implementation. The resulting * string should be localized for the supplied * <code>Locale</code>, if possible. * * @param locale a <code>Locale</code> for which the return value * should be localized. * * @return a <code>String</code> containing a description of this * service provider. */ public abstract String getDescription(Locale locale); }
⏎ javax/imageio/spi/IIOServiceProvider.java
Or download all of them as a single archive file:
File name: jre-rt-javax-1.8.0_191-src.zip File size: 5381005 bytes Release date: 2018-10-28 Download
⇒ JRE 8 rt.jar - org.* Package Source Code
2023-02-07, 190940👍, 5💬
Popular Posts:
JDK 17 java.base.jmod is the JMOD file for JDK 17 Base module. JDK 17 Base module compiled class fil...
What Is junit-3.8.1.jar? junit-3.8.1.jar is the version 3.8.1 of JUnit JAR library file. JUnit is a ...
JDK 11 jdk.rmic.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) Compiler Tool tool, ...
JDK 6 tools.jar is the JAR file for JDK 6 tools. It contains Java classes to support different JDK t...
JDK 11 jdk.xml.dom.jmod is the JMOD file for JDK 11 XML DOM module. JDK 11 XML DOM module compiled c...