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/Filer.java
/* * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.annotation.processing; import javax.tools.JavaFileManager; import javax.tools.*; import javax.lang.model.element.Element; import java.io.IOException; /** * This interface supports the creation of new files by an annotation * processor. Files created in this way will be known to the * annotation processing tool implementing this interface, better * enabling the tool to manage them. Source and class files so * created will be {@linkplain RoundEnvironment#getRootElements * considered for processing} by the tool in a subsequent {@linkplain * RoundEnvironment round of processing} after the {@code close} * method has been called on the {@code Writer} or {@code * OutputStream} used to write the contents of the file. * * Three kinds of files are distinguished: source files, class files, * and auxiliary resource files. * * <p> There are two distinguished supported locations (subtrees * within the logical file system) where newly created files are * placed: one for {@linkplain * javax.tools.StandardLocation#SOURCE_OUTPUT new source files}, and * one for {@linkplain javax.tools.StandardLocation#CLASS_OUTPUT new * class files}. (These might be specified on a tool's command line, * for example, using flags such as {@code -s} and {@code -d}.) The * actual locations for new source files and new class files may or * may not be distinct on a particular run of the tool. Resource * files may be created in either location. The methods for reading * and writing resources take a relative name argument. A relative * name is a non-null, non-empty sequence of path segments separated * by {@code '/'}; {@code '.'} and {@code '..'} are invalid path * segments. A valid relative name must match the * "path-rootless" rule of <a * href="http://www.ietf.org/rfc/rfc3986.txt">RFC 3986</a>, section * 3.3. * * <p>The file creation methods take a variable number of arguments to * allow the <em>originating elements</em> to be provided as hints to * the tool infrastructure to better manage dependencies. The * originating elements are the types or packages (representing {@code * package-info} files) which caused an annotation processor to * attempt to create a new file. For example, if an annotation * processor tries to create a source file, {@code * GeneratedFromUserSource}, in response to processing * * <blockquote><pre> * @Generate * public class UserSource {} * </pre></blockquote> * * the type element for {@code UserSource} should be passed as part of * the creation method call as in: * * <blockquote><pre> * filer.createSourceFile("GeneratedFromUserSource", * eltUtils.getTypeElement("UserSource")); * </pre></blockquote> * * If there are no originating elements, none need to be passed. This * information may be used in an incremental environment to determine * the need to rerun processors or remove generated files. * Non-incremental environments may ignore the originating element * information. * * <p> During each run of an annotation processing tool, a file with a * given pathname may be created only once. If that file already * exists before the first attempt to create it, the old contents will * be deleted. Any subsequent attempt to create the same file during * a run will throw a {@link FilerException}, as will attempting to * create both a class file and source file for the same type name or * same package name. The {@linkplain Processor initial inputs} to * the tool are considered to be created by the zeroth round; * therefore, attempting to create a source or class file * corresponding to one of those inputs will result in a {@link * FilerException}. * * <p> In general, processors must not knowingly attempt to overwrite * existing files that were not generated by some processor. A {@code * Filer} may reject attempts to open a file corresponding to an * existing type, like {@code java.lang.Object}. Likewise, the * invoker of the annotation processing tool must not knowingly * configure the tool such that the discovered processors will attempt * to overwrite existing files that were not generated. * * <p> Processors can indicate a source or class file is generated by * including an {@link javax.annotation.Generated @Generated} * annotation. * * <p> Note that some of the effect of overwriting a file can be * achieved by using a <i>decorator</i>-style pattern. Instead of * modifying a class directly, the class is designed so that either * its superclass is generated by annotation processing or subclasses * of the class are generated by annotation processing. If the * subclasses are generated, the parent class may be designed to use * factories instead of public constructors so that only subclass * instances would be presented to clients of the parent class. * * @author Joseph D. Darcy * @author Scott Seligman * @author Peter von der Ahé * @since 1.6 */ public interface Filer { /** * Creates a new source file and returns an object to allow * writing to it. The file's name and path (relative to the * {@linkplain StandardLocation#SOURCE_OUTPUT root output location * for source files}) are based on the type to be declared in that * file. If more than one type is being declared, the name of the * principal top-level type (the public one, for example) should * be used. A source file can also be created to hold information * about a package, including package annotations. To create a * source file for a named package, have {@code name} be the * package's name followed by {@code ".package-info"}; to create a * source file for an unnamed package, use {@code "package-info"}. * * <p> Note that to use a particular {@linkplain * java.nio.charset.Charset charset} to encode the contents of the * file, an {@code OutputStreamWriter} with the chosen charset can * be created from the {@code OutputStream} from the returned * object. If the {@code Writer} from the returned object is * directly used for writing, its charset is determined by the * implementation. An annotation processing tool may have an * {@code -encoding} flag or analogous option for specifying this; * otherwise, it will typically be the platform's default * encoding. * * <p>To avoid subsequent errors, the contents of the source file * should be compatible with the {@linkplain * ProcessingEnvironment#getSourceVersion source version} being used * for this run. * * @param name canonical (fully qualified) name of the principal type * being declared in this file or a package name followed by * {@code ".package-info"} for a package information file * @param originatingElements type or package elements causally * associated with the creation of this file, may be elided or * {@code null} * @return a {@code JavaFileObject} to write the new source file * @throws FilerException if the same pathname has already been * created, the same type has already been created, or the name is * not valid for a type * @throws IOException if the file cannot be created */ JavaFileObject createSourceFile(CharSequence name, Element... originatingElements) throws IOException; /** * Creates a new class file, and returns an object to allow * writing to it. The file's name and path (relative to the * {@linkplain StandardLocation#CLASS_OUTPUT root output location * for class files}) are based on the name of the type being * written. A class file can also be created to hold information * about a package, including package annotations. To create a * class file for a named package, have {@code name} be the * package's name followed by {@code ".package-info"}; creating a * class file for an unnamed package is not supported. * * <p>To avoid subsequent errors, the contents of the class file * should be compatible with the {@linkplain * ProcessingEnvironment#getSourceVersion source version} being used * for this run. * * @param name binary name of the type being written or a package name followed by * {@code ".package-info"} for a package information file * @param originatingElements type or package elements causally * associated with the creation of this file, may be elided or * {@code null} * @return a {@code JavaFileObject} to write the new class file * @throws FilerException if the same pathname has already been * created, the same type has already been created, or the name is * not valid for a type * @throws IOException if the file cannot be created */ JavaFileObject createClassFile(CharSequence name, Element... originatingElements) throws IOException; /** * Creates a new auxiliary resource file for writing and returns a * file object for it. The file may be located along with the * newly created source files, newly created binary files, or * other supported location. The locations {@link * StandardLocation#CLASS_OUTPUT CLASS_OUTPUT} and {@link * StandardLocation#SOURCE_OUTPUT SOURCE_OUTPUT} must be * supported. The resource may be named relative to some package * (as are source and class files), and from there by a relative * pathname. In a loose sense, the full pathname of the new file * will be the concatenation of {@code location}, {@code pkg}, and * {@code relativeName}. * * <p>Files created via this method are not registered for * annotation processing, even if the full pathname of the file * would correspond to the full pathname of a new source file * or new class file. * * @param location location of the new file * @param pkg package relative to which the file should be named, * or the empty string if none * @param relativeName final pathname components of the file * @param originatingElements type or package elements causally * associated with the creation of this file, may be elided or * {@code null} * @return a {@code FileObject} to write the new resource * @throws IOException if the file cannot be created * @throws FilerException if the same pathname has already been * created * @throws IllegalArgumentException for an unsupported location * @throws IllegalArgumentException if {@code relativeName} is not relative */ FileObject createResource(JavaFileManager.Location location, CharSequence pkg, CharSequence relativeName, Element... originatingElements) throws IOException; /** * Returns an object for reading an existing resource. The * locations {@link StandardLocation#CLASS_OUTPUT CLASS_OUTPUT} * and {@link StandardLocation#SOURCE_OUTPUT SOURCE_OUTPUT} must * be supported. * * @param location location of the file * @param pkg package relative to which the file should be searched, * or the empty string if none * @param relativeName final pathname components of the file * @return an object to read the file * @throws FilerException if the same pathname has already been * opened for writing * @throws IOException if the file cannot be opened * @throws IllegalArgumentException for an unsupported location * @throws IllegalArgumentException if {@code relativeName} is not relative */ FileObject getResource(JavaFileManager.Location location, CharSequence pkg, CharSequence relativeName) throws IOException; }
⏎ javax/annotation/processing/Filer.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, 191204👍, 5💬
Popular Posts:
JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module. JDK 11 Desktop module compiled ...
How to read XML document with XML Schema validation from socket connections with the socket\DelayedI...
The JSR 105 XML Digital Signature 1.0.1 FCS implementation provides an API and implementation that a...
JDK 11 jdk.crypto.cryptoki.jmod is the JMOD file for JDK 11 Crypto Cryptoki module. JDK 11 Crypto KI...
JRE 5 sunjce_provider.jar is the JAR file for JRE 5 Sun JCE Provider, which provides implementations...