Uses of Class
com.intellij.lang.annotation.Annotation

Packages that use Annotation
com.intellij.lang.annotation Provides interfaces for implementing additional syntax highlighting, error and warning highlighting in custom languages. 
 

Uses of Annotation in com.intellij.lang.annotation
 

Methods in com.intellij.lang.annotation that return Annotation
 Annotation AnnotationHolder.createErrorAnnotation(ASTNode node, java.lang.String message)
          Creates an error annotation with the specified message over the specified AST node.
 Annotation AnnotationHolder.createErrorAnnotation(PsiElement elt, java.lang.String message)
          Creates an error annotation with the specified message over the specified PSI element.
 Annotation AnnotationHolder.createErrorAnnotation(TextRange range, java.lang.String message)
          Creates an error annotation with the specified message over the specified text range.
 Annotation AnnotationHolder.createInfoAnnotation(ASTNode node, java.lang.String message)
          Creates an information annotation with the specified message over the specified AST node.
 Annotation AnnotationHolder.createInfoAnnotation(PsiElement elt, java.lang.String message)
          Creates an information annotation with the specified message over the specified PSI element.
 Annotation AnnotationHolder.createInfoAnnotation(TextRange range, java.lang.String message)
          Creates an information annotation with the specified message over the specified text range.
 Annotation AnnotationHolder.createWarningAnnotation(ASTNode node, java.lang.String message)
          Creates a warning annotation with the specified message over the specified AST node.
 Annotation AnnotationHolder.createWarningAnnotation(PsiElement elt, java.lang.String message)
          Creates a warning annotation with the specified message over the specified PSI element.
 Annotation AnnotationHolder.createWarningAnnotation(TextRange range, java.lang.String message)
          Creates a warning annotation with the specified message over the specified text range.