JDK 13 RFR of JDK-8219805: Cross-link javax.lang.model.{type, element} packages to utility interfaces
Joe Darcy
joe.darcy at oracle.com
Wed Feb 27 02:11:08 UTC 2019
Hello,
As suggested by Jon, please review the patch below to add @see links
between the package-info files for javax.lang.model.{type, element} and
the corresponding utility interfaces in in javax.lang.model.util.{Types,
Elements}.
Thanks,
-Joe
diff -r ca23d3475af0
src/java.compiler/share/classes/javax/lang/model/element/package-info.java
---
a/src/java.compiler/share/classes/javax/lang/model/element/package-info.java
Tue Feb 26 15:29:08 2019 -0800
+++
b/src/java.compiler/share/classes/javax/lang/model/element/package-info.java
Tue Feb 26 18:08:48 2019 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights
reserved.
+ * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights
reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -107,6 +107,7 @@
* @author Joseph D. Darcy
* @author Scott Seligman
* @author Peter von der Ahé
+ * @see javax.lang.model.util.Elements
* @since 1.6
*/
package javax.lang.model.element;
diff -r ca23d3475af0
src/java.compiler/share/classes/javax/lang/model/type/package-info.java
---
a/src/java.compiler/share/classes/javax/lang/model/type/package-info.java
Tue Feb 26 15:29:08 2019 -0800
+++
b/src/java.compiler/share/classes/javax/lang/model/type/package-info.java
Tue Feb 26 18:08:48 2019 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights
reserved.
+ * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights
reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -36,6 +36,7 @@
* @author Joseph D. Darcy
* @author Scott Seligman
* @author Peter von der Ahé
+ * @see javax.lang.model.util.Types
* @since 1.6
*/
package javax.lang.model.type;
More information about the compiler-dev
mailing list