[java-psi] Snippet API non-experimental anymore

GitOrigin-RevId: 41633ba4069240ef4abd6dfd63bf2e87a9571a67
This commit is contained in:
Tagir Valeev
2024-11-14 17:05:05 +00:00
committed by intellij-monorepo-bot
parent d4d49131dd
commit 515d32af52
6 changed files with 0 additions and 12 deletions
@@ -2,7 +2,6 @@
package com.intellij.psi.javadoc;
import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.Contract;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@@ -11,7 +10,6 @@ import org.jetbrains.annotations.Nullable;
* Represents name-value pair in @snippet tag.
* @see PsiSnippetDocTag
*/
@ApiStatus.Experimental
public interface PsiSnippetAttribute extends PsiElement {
/**
* Snippet ID (adds an anchor to generated javadoc)
@@ -2,7 +2,6 @@
package com.intellij.psi.javadoc;
import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@@ -11,7 +10,6 @@ import org.jetbrains.annotations.Nullable;
*
* @see PsiSnippetDocTag
*/
@ApiStatus.Experimental
public interface PsiSnippetAttributeList extends PsiElement {
/**
* @return array of name-value pairs of snippet tag.
@@ -2,7 +2,6 @@
package com.intellij.psi.javadoc;
import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.Contract;
import org.jetbrains.annotations.NotNull;
@@ -11,7 +10,6 @@ import org.jetbrains.annotations.NotNull;
*
* @see PsiSnippetAttributeValue
*/
@ApiStatus.Experimental
public interface PsiSnippetAttributeValue extends PsiElement {
/**
* Returns the content of the attribute value (without quotes, if any)
@@ -1,7 +1,6 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.psi.javadoc;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.Nullable;
/**
@@ -9,7 +8,6 @@ import org.jetbrains.annotations.Nullable;
* <p>
* <a href="https://openjdk.org/jeps/413">JEP 413</a>
*/
@ApiStatus.Experimental
public interface PsiSnippetDocTag extends PsiInlineDocTag {
@Override
@Nullable PsiSnippetDocTagValue getValueElement();
@@ -2,14 +2,12 @@
package com.intellij.psi.javadoc;
import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
/**
* Represents elements starting from ':' (inclusive) and until '}' (exclusive) in @snippet javadoc tag.
* @see PsiSnippetDocTag
*/
@ApiStatus.Experimental
public interface PsiSnippetDocTagBody extends PsiElement {
/**
* @return elements which text makes up snippet (without leading *)
@@ -1,7 +1,6 @@
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.psi.javadoc;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@@ -9,7 +8,6 @@ import org.jetbrains.annotations.Nullable;
* The content of the snippet tag (attributes and inline body if present).
* @see PsiSnippetDocTag
*/
@ApiStatus.Experimental
public interface PsiSnippetDocTagValue extends PsiDocTagValue {
/**
* @return list of name-value pairs of the snippet tag.