Skip to content

Commit 5a74291

Browse files
committedJul 9, 2021
8266565: Spec of ForwardingJavaFileManager/ForwardingFileObject/ForwardingJavaFileObject methods should mention delegation instead of being copied
Reviewed-by: vromero
1 parent 3d193ad commit 5a74291

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed
 

‎src/java.compiler/share/classes/javax/tools/ForwardingFileObject.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,17 @@
3838
* might override some of these methods and might also provide
3939
* additional fields and methods.
4040
*
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+
*
4144
* @param <F> the kind of file object forwarded to by this object
4245
* @author Peter von der Ah&eacute;
4346
* @since 1.6
4447
*/
4548
public class ForwardingFileObject<F extends FileObject> implements FileObject {
4649

4750
/**
48-
* The file object which all methods are delegated to.
51+
* The file object to which all methods are delegated.
4952
*/
5053
protected final F fileObject;
5154

‎src/java.compiler/share/classes/javax/tools/ForwardingJavaFileManager.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,17 @@
3737
* might override some of these methods and might also provide
3838
* additional fields and methods.
3939
*
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+
*
4043
* @param <M> the kind of file manager forwarded to by this object
4144
* @author Peter von der Ah&eacute;
4245
* @since 1.6
4346
*/
4447
public class ForwardingJavaFileManager<M extends JavaFileManager> implements JavaFileManager {
4548

4649
/**
47-
* The file manager which all methods are delegated to.
50+
* The file manager to which all methods are delegated.
4851
*/
4952
protected final M fileManager;
5053

‎src/java.compiler/share/classes/javax/tools/ForwardingJavaFileObject.java

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
* might override some of these methods and might also provide
3434
* additional fields and methods.
3535
*
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+
*
3639
* @param <F> the kind of file object forwarded to by this object
3740
* @author Peter von der Ah&eacute;
3841
* @since 1.6

0 commit comments

Comments
 (0)
Please sign in to comment.