File tree 3 files changed +11
-2
lines changed
src/java.compiler/share/classes/javax/tools
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 38
38
* might override some of these methods and might also provide
39
39
* additional fields and methods.
40
40
*
41
+ * <p>Unless stated otherwise, references in this class to "<em>this file object</em>"
42
+ * should be interpreted as referring indirectly to the {@link #fileObject delegate file object}.
43
+ *
41
44
* @param <F> the kind of file object forwarded to by this object
42
45
* @author Peter von der Ahé
43
46
* @since 1.6
44
47
*/
45
48
public class ForwardingFileObject <F extends FileObject > implements FileObject {
46
49
47
50
/**
48
- * The file object which all methods are delegated to .
51
+ * The file object to which all methods are delegated.
49
52
*/
50
53
protected final F fileObject ;
51
54
Original file line number Diff line number Diff line change 37
37
* might override some of these methods and might also provide
38
38
* additional fields and methods.
39
39
*
40
+ * <p>Unless stated otherwise, references in this class to "<em>this file manager</em>"
41
+ * should be interpreted as referring indirectly to the {@link #fileManager delegate file manager}.
42
+ *
40
43
* @param <M> the kind of file manager forwarded to by this object
41
44
* @author Peter von der Ahé
42
45
* @since 1.6
43
46
*/
44
47
public class ForwardingJavaFileManager <M extends JavaFileManager > implements JavaFileManager {
45
48
46
49
/**
47
- * The file manager which all methods are delegated to .
50
+ * The file manager to which all methods are delegated.
48
51
*/
49
52
protected final M fileManager ;
50
53
Original file line number Diff line number Diff line change 33
33
* might override some of these methods and might also provide
34
34
* additional fields and methods.
35
35
*
36
+ * <p>Unless stated otherwise, references in this class to "<em>this file object</em>"
37
+ * should be interpreted as referring indirectly to the {@link #fileObject delegate file object}.
38
+ *
36
39
* @param <F> the kind of file object forwarded to by this object
37
40
* @author Peter von der Ahé
38
41
* @since 1.6
You can’t perform that action at this time.
0 commit comments