Skip to content

Commit 3c230b8

Browse files
author
Mandy Chung
committedNov 24, 2020
8256993: Clarify Package::isSealed javadoc about package sealing vs sealed class or interface
Reviewed-by: alanb
1 parent 1b7a61f commit 3c230b8

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed
 

‎src/java.base/share/classes/java/lang/Package.java

+16-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* {@code Package} is compatible with a particular specification version
5454
* by using the {@link #isCompatibleWith Package.isCompatibleWith(String)}
5555
* method. In addition, information about the actual classes that make up the
56-
* run-time package can be provided when the Package is defined.
56+
* run-time package can be provided when the {@code Package} is defined.
5757
* This information consists of an implementation title, version, and vendor
5858
* (indicating the supplier of the classes).
5959
* <p>
@@ -221,7 +221,15 @@ public String getImplementationVendor() {
221221
/**
222222
* Returns true if this package is sealed.
223223
*
224+
* @apiNote
225+
* <a href="{@docRoot}/../specs/jar/jar.html#package-sealing">Package sealing</a>
226+
* has no relationship with {@linkplain Class#isSealed() sealed classes or interfaces}.
227+
* Package sealing is specific to JAR files defined for classes in an unnamed module.
228+
* See the {@link Package Package} class specification for details
229+
* how a {@code Package} is defined as sealed package.
230+
*
224231
* @return true if the package is sealed, false otherwise
232+
*
225233
*/
226234
public boolean isSealed() {
227235
return module().isNamed() || versionInfo.sealBase != null;
@@ -231,6 +239,13 @@ public boolean isSealed() {
231239
* Returns true if this package is sealed with respect to the specified
232240
* code source {@code url}.
233241
*
242+
* @apiNote
243+
* <a href="{@docRoot}/../specs/jar/jar.html#package-sealing">Package sealing</a>
244+
* has no relationship with {@linkplain Class#isSealed() sealed classes or interfaces}.
245+
* Package sealing is specific to JAR files defined for classes in an unnamed module.
246+
* See the {@link Package Package} class specification for details
247+
* how a {@code Package} is defined as sealed package.
248+
*
234249
* @param url the code source URL
235250
* @return true if this package is sealed with respect to the given {@code url}
236251
*/

0 commit comments

Comments
 (0)
Please sign in to comment.