Class ForwardingJavaFileObject<F extends JavaFileObject>
java.lang.Object
javax.tools.ForwardingFileObject<F>
javax.tools.ForwardingJavaFileObject<F>
- Type Parameters:
F- the kind of file object forwarded to by this object
- All Implemented Interfaces:
FileObject, JavaFileObject
public class ForwardingJavaFileObject<F extends JavaFileObject>
extends ForwardingFileObject<F>
implements JavaFileObject
Forwards calls to a given file object. Subclasses of this class
might override some of these methods and might also provide
additional fields and methods.
Unless stated otherwise, references in this class to "this file object" should be interpreted as referring indirectly to the delegate file object.
- Since:
- 1.6
-
Nested Class Summary
Nested classes/interfaces declared in interface JavaFileObject
JavaFileObject.Kind -
Field Summary
Fields declared in class ForwardingFileObject
fileObjectModifier and TypeFieldDescriptionprotected final FThe file object to which all methods are delegated. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedForwardingJavaFileObject(F fileObject) Creates a new instance ofForwardingJavaFileObject. -
Method Summary
Modifier and TypeMethodDescriptionProvides a hint about the access level of the class represented by this file object.getKind()Returns the kind of this file object.Provides a hint about the nesting level of the class represented by this file object.booleanisNameCompatible(String simpleName, JavaFileObject.Kind kind) Checks if this file object is compatible with the specified simple name and kind.Methods declared in class ForwardingFileObject
delete, getCharContent, getLastModified, getName, openInputStream, openOutputStream, openReader, openWriter, toUriModifier and TypeMethodDescriptionbooleandelete()Deletes this file object.getCharContent(boolean ignoreEncodingErrors) Returns the character content of this file object, if available.longReturns the time this file object was last modified.getName()Returns a user-friendly name for this file object.Returns an InputStream for this file object.Returns an OutputStream for this file object.openReader(boolean ignoreEncodingErrors) Returns a reader for this object.Returns a Writer for this file object.toUri()Returns a URI identifying this file object.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
ForwardingJavaFileObject
Creates a new instance ofForwardingJavaFileObject.- Parameters:
fileObject- delegate to this file object
-
-
Method Details
-
getKind
Description copied from interface:JavaFileObjectReturns the kind of this file object.- Specified by:
getKindin interfaceJavaFileObject- Returns:
- the kind
-
isNameCompatible
Description copied from interface:JavaFileObjectChecks if this file object is compatible with the specified simple name and kind. A simple name is a single identifier (not qualified) as defined in The Java Language Specification, section 6.2.- Specified by:
isNameCompatiblein interfaceJavaFileObject- Parameters:
simpleName- a simple name of a classkind- a kind- Returns:
trueif this file object is compatible;falseotherwise
-
getNestingKind
Description copied from interface:JavaFileObjectProvides a hint about the nesting level of the class represented by this file object. This method may returnNestingKind.MEMBERto meanNestingKind.LOCALorNestingKind.ANONYMOUS. If the nesting level is not known or this file object does not represent a class file this method returnsnull.- Specified by:
getNestingKindin interfaceJavaFileObject- Returns:
- the nesting kind, or
nullif the nesting kind is not known
-
getAccessLevel
Description copied from interface:JavaFileObjectProvides a hint about the access level of the class represented by this file object. If the access level is not known or this file object does not represent a class file this method returnsnull.- Specified by:
getAccessLevelin interfaceJavaFileObject- Returns:
- the access level
-