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/annotation/processing/ProcessingEnvironment.java
/* * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.annotation.processing; import java.util.Map; import java.util.Locale; import javax.lang.model.SourceVersion; import javax.lang.model.util.Elements; import javax.lang.model.util.Types; /** * An annotation processing tool framework will {@linkplain * Processor#init provide an annotation processor with an object * implementing this interface} so the processor can use facilities * provided by the framework to write new files, report error * messages, and find other utilities. * * <p>Third parties may wish to provide value-add wrappers around the * facility objects from this interface, for example a {@code Filer} * extension that allows multiple processors to coordinate writing out * a single source file. To enable this, for processors running in a * context where their side effects via the API could be visible to * each other, the tool infrastructure must provide corresponding * facility objects that are {@code .equals}, {@code Filer}s that are * {@code .equals}, and so on. In addition, the tool invocation must * be able to be configured such that from the perspective of the * running annotation processors, at least the chosen subset of helper * classes are viewed as being loaded by the same class loader. * (Since the facility objects manage shared state, the implementation * of a wrapper class must know whether or not the same base facility * object has been wrapped before.) * * @author Joseph D. Darcy * @author Scott Seligman * @author Peter von der Ahé * @since 1.6 */ public interface ProcessingEnvironment { /** * Returns the processor-specific options passed to the annotation * processing tool. Options are returned in the form of a map from * option name to option value. For an option with no value, the * corresponding value in the map is {@code null}. * * <p>See documentation of the particular tool infrastructure * being used for details on how to pass in processor-specific * options. For example, a command-line implementation may * distinguish processor-specific options by prefixing them with a * known string like {@code "-A"}; other tool implementations may * follow different conventions or provide alternative mechanisms. * A given implementation may also provide implementation-specific * ways of finding options passed to the tool in addition to the * processor-specific options. * * @return the processor-specific options passed to the tool */ Map<String,String> getOptions(); /** * Returns the messager used to report errors, warnings, and other * notices. * * @return the messager */ Messager getMessager(); /** * Returns the filer used to create new source, class, or auxiliary * files. * * @return the filer */ Filer getFiler(); /** * Returns an implementation of some utility methods for * operating on elements * * @return element utilities */ Elements getElementUtils(); /** * Returns an implementation of some utility methods for * operating on types. * * @return type utilities */ Types getTypeUtils(); /** * Returns the source version that any generated {@linkplain * Filer#createSourceFile source} and {@linkplain * Filer#createClassFile class} files should conform to. * * @return the source version to which generated source and class * files should conform to * @see Processor#getSupportedSourceVersion */ SourceVersion getSourceVersion(); /** * Returns the current locale or {@code null} if no locale is in * effect. The locale can be be used to provide localized * {@linkplain Messager messages}. * * @return the current locale or {@code null} if no locale is in * effect */ Locale getLocale(); }
⏎ javax/annotation/processing/ProcessingEnvironment.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
2024-07-16, 255938👍, 7💬
Popular Posts:
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...
Apache BCEL Source Code Files are inside the Apache BCEL source package file like bcel-6.6.1-src.zip...
What Is log4j-1.2.13.jar? I got the JAR file from logging-log4j-1.2.13.zip .log4j-1.2.13.jar is the ...
How to download and install ojdbc6.jar for Oracle 11g R2? ojdbc6.jar for Oracle 11g R2 is a Java 6, ...