Add javadoc to KtAnnotation

This commit is contained in:
Roman Golyshev
2021-11-16 21:34:57 +03:00
parent af924fd3d1
commit 79f9bd9c29
@@ -24,6 +24,17 @@ import org.jetbrains.kotlin.psi.stubs.elements.KtStubElementTypes;
import java.util.List;
/**
* A group of annotation entries applied to the same use-site target. Can be used to avoid writing use-site target multiple times.
* <p>
* Syntax examples:
* <ul>
* <li>{@code @file:[Annotation1, Annotation2]}</li>
* <li>{@code @set:[Inject, Autowire]}</li>
* </ul>
* <p>
* For a single annotation entry, see {@link KtAnnotationEntry}.
*/
public class KtAnnotation extends KtElementImplStub<KotlinPlaceHolderStub<KtAnnotation>> {
public KtAnnotation(@NotNull ASTNode node) {