Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/core/IType.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/IType.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/IType.java
index fdb403cec1..1ec8d70c98 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/IType.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/IType.java
@@ -770,7 +770,7 @@ public interface IType extends IMember, IAnnotatable {
* @exception JavaModelException if this element does not exist or if an
* exception occurs while accessing its corresponding resource.
* @return names of types that this type permits to be its sub types
- * @noreference This method is not intended to be referenced by clients as it is a part of Java preview feature.
+ * @since 3.28
*/
String[] getPermittedSubtypeNames() throws JavaModelException;
@@ -936,7 +936,7 @@ public interface IType extends IMember, IAnnotatable {
* @exception JavaModelException if this element does not exist or if an
* exception occurs while accessing its corresponding resource.
* @return true if this type this type is a sealed type, false otherwise
- * @noreference This method is not intended to be referenced by clients as it is a part of Java preview feature.
+ * @since 3.28
*/
boolean isSealed() throws JavaModelException;

Back to the top