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 17 java.compiler.jmod - Compiler Module
JDK 17 java.compiler.jmod is the JMOD file for JDK 17 Compiler module.
JDK 17 Compiler module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.compiler.jmod.
JDK 17 Compiler module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Compiler module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.compiler.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ javax/tools/ForwardingJavaFileManager.java
/* * Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.tools; import java.io.IOException; import java.util.Iterator; import java.util.Objects; import java.util.ServiceLoader; import java.util.Set; import javax.tools.JavaFileObject.Kind; /** * Forwards calls to a given file manager. Subclasses of this class * might override some of these methods and might also provide * additional fields and methods. * * @param <M> the kind of file manager forwarded to by this object * @author Peter von der Ahé * @since 1.6 */ public class ForwardingJavaFileManager<M extends JavaFileManager> implements JavaFileManager { /** * The file manager which all methods are delegated to. */ protected final M fileManager; /** * Creates a new instance of {@code ForwardingJavaFileManager}. * @param fileManager delegate to this file manager */ protected ForwardingJavaFileManager(M fileManager) { this.fileManager = Objects.requireNonNull(fileManager); } /** * @throws SecurityException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} */ @Override public ClassLoader getClassLoader(Location location) { return fileManager.getClassLoader(location); } /** * @throws IOException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} */ @Override public Iterable<JavaFileObject> list(Location location, String packageName, Set<Kind> kinds, boolean recurse) throws IOException { return fileManager.list(location, packageName, kinds, recurse); } /** * @throws IllegalStateException {@inheritDoc} */ @Override public String inferBinaryName(Location location, JavaFileObject file) { return fileManager.inferBinaryName(location, file); } /** * @throws IllegalArgumentException {@inheritDoc} */ @Override public boolean isSameFile(FileObject a, FileObject b) { return fileManager.isSameFile(a, b); } /** * @throws IllegalArgumentException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} */ @Override public boolean handleOption(String current, Iterator<String> remaining) { return fileManager.handleOption(current, remaining); } @Override public boolean hasLocation(Location location) { return fileManager.hasLocation(location); } @Override public int isSupportedOption(String option) { return fileManager.isSupportedOption(option); } /** * @throws IllegalArgumentException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} */ @Override public JavaFileObject getJavaFileForInput(Location location, String className, Kind kind) throws IOException { return fileManager.getJavaFileForInput(location, className, kind); } /** * @throws IllegalArgumentException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} */ @Override public JavaFileObject getJavaFileForOutput(Location location, String className, Kind kind, FileObject sibling) throws IOException { return fileManager.getJavaFileForOutput(location, className, kind, sibling); } /** * @throws IllegalArgumentException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} */ @Override public FileObject getFileForInput(Location location, String packageName, String relativeName) throws IOException { return fileManager.getFileForInput(location, packageName, relativeName); } /** * @throws IllegalArgumentException {@inheritDoc} * @throws IllegalStateException {@inheritDoc} */ @Override public FileObject getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) throws IOException { return fileManager.getFileForOutput(location, packageName, relativeName, sibling); } @Override public void flush() throws IOException { fileManager.flush(); } @Override public void close() throws IOException { fileManager.close(); } /** * @since 9 */ @Override public Location getLocationForModule(Location location, String moduleName) throws IOException { return fileManager.getLocationForModule(location, moduleName); } /** * @since 9 */ @Override public Location getLocationForModule(Location location, JavaFileObject fo) throws IOException { return fileManager.getLocationForModule(location, fo); } /** * @since 9 */ @Override public <S> ServiceLoader<S> getServiceLoader(Location location, Class<S> service) throws IOException { return fileManager.getServiceLoader(location, service); } /** * @since 9 */ @Override public String inferModuleName(Location location) throws IOException { return fileManager.inferModuleName(location); } /** * @since 9 */ @Override public Iterable<Set<Location>> listLocationsForModules(Location location) throws IOException { return fileManager.listLocationsForModules(location); } /** * @since 9 */ @Override public boolean contains(Location location, FileObject fo) throws IOException { return fileManager.contains(location, fo); } }
⏎ javax/tools/ForwardingJavaFileManager.java
Or download all of them as a single archive file:
File name: java.compiler-17.0.5-src.zip File size: 192681 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.datatransfer.jmod - Data Transfer Module
2023-09-16, 6223👍, 0💬
Popular Posts:
What Is poi-scratchpad-3.5.jar? poi-scratchpad-3.5.jar is one of the JAR files for Apache POI 3.5, w...
The Digester package lets you configure an XML -> Java object mapping module, which triggers certain...
What Is jtds-1.2.2.jar? jtds-1.2.2.jar is the JAR files of jTDS Java library 1.2.2, which is a JDBC ...
How to merge two JAR files with "jar" commands? I am tired of specifying multiple JAR files in the c...
What Is commons-io-2.11.jar? commons-io-2.11.jar is the JAR file for Commons IO 2.5, which is a libr...