- 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- 
Nested classes/interfaces declared in interface javax.tools.JavaFileObjectJavaFileObject.Kind
 
- 
 - 
Field Summary- 
Fields declared in class javax.tools.ForwardingFileObjectfileObject
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedForwardingJavaFileObject(F fileObject)Creates a new instance of ForwardingJavaFileObject.
 - 
Method Summary- 
Methods declared in class javax.tools.ForwardingFileObjectgetCharContent, openInputStream, openOutputStream, openReader, openWriter
 - 
Methods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods declared in interface javax.tools.FileObjectdelete, getCharContent, getLastModified, getName, openInputStream, openOutputStream, openReader, openWriter, toUri
 - 
Methods declared in interface javax.tools.JavaFileObjectgetAccessLevel, getKind, getNestingKind, isNameCompatible
 
- 
 
- 
- 
- 
Constructor Detail- 
ForwardingJavaFileObjectprotected ForwardingJavaFileObject(F fileObject) Creates a new instance of ForwardingJavaFileObject.- Parameters:
- fileObject- delegate to this file object
 
 
- 
 
-