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.
- Since:
- 1.6
- 
Nested Class Summary
- 
Field Summary
- 
Constructor SummaryConstructors Modifier Constructor Description protectedForwardingJavaFileObject(F fileObject)Creates a new instance of ForwardingJavaFileObject.
- 
Method SummaryMethods declared in class javax.tools.ForwardingFileObjectgetCharContent, openInputStream, openOutputStream, openReader, openWriterMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface javax.tools.FileObjectdelete, getCharContent, getLastModified, getName, openInputStream, openOutputStream, openReader, openWriter, toUriMethods declared in interface javax.tools.JavaFileObjectgetAccessLevel, getKind, getNestingKind, isNameCompatible
- 
Constructor Details- 
ForwardingJavaFileObjectCreates a new instance of ForwardingJavaFileObject.- Parameters:
- fileObject- delegate to this file object
 
 
-