53
53
* {@code Package} is compatible with a particular specification version
54
54
* by using the {@link #isCompatibleWith Package.isCompatibleWith(String)}
55
55
* 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.
57
57
* This information consists of an implementation title, version, and vendor
58
58
* (indicating the supplier of the classes).
59
59
* <p>
@@ -221,7 +221,15 @@ public String getImplementationVendor() {
221
221
/**
222
222
* Returns true if this package is sealed.
223
223
*
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
+ *
224
231
* @return true if the package is sealed, false otherwise
232
+ *
225
233
*/
226
234
public boolean isSealed () {
227
235
return module ().isNamed () || versionInfo .sealBase != null ;
@@ -231,6 +239,13 @@ public boolean isSealed() {
231
239
* Returns true if this package is sealed with respect to the specified
232
240
* code source {@code url}.
233
241
*
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
+ *
234
249
* @param url the code source URL
235
250
* @return true if this package is sealed with respect to the given {@code url}
236
251
*/
0 commit comments