javax.annotation.processing

Interface Messager


  • public interface Messager
    A Messager provides the way for an annotation processor to report error messages, warnings, and other notices. Elements, annotations, and annotation values can be passed to provide a location hint for the message. However, such location hints may be unavailable or only approximate.

    Printing a message with an error kind will raise an error.

    Note that the messages "printed" by methods in this interface may or may not appear as textual output to a location like System.out or System.err. Implementations may choose to present this information in a different fashion, such as messages in a window.

    Since:
    1.6
    See Also:
    ProcessingEnvironment.getLocale()
    • Method Detail

      • printMessage

        void printMessage(Diagnostic.Kind kind,
                        CharSequence msg)
        Prints a message of the specified kind.
        Parameters:
        kind - the kind of message
        msg - the message, or an empty string if none
      • printMessage

        void printMessage(Diagnostic.Kind kind,
                        CharSequence msg,
                        Element e)
        Prints a message of the specified kind at the location of the element.
        Parameters:
        kind - the kind of message
        msg - the message, or an empty string if none
        e - the element to use as a position hint
      • printMessage

        void printMessage(Diagnostic.Kind kind,
                        CharSequence msg,
                        Element e,
                        AnnotationMirror a)
        Prints a message of the specified kind at the location of the annotation mirror of the annotated element.
        Parameters:
        kind - the kind of message
        msg - the message, or an empty string if none
        e - the annotated element
        a - the annotation to use as a position hint
      • printMessage

        void printMessage(Diagnostic.Kind kind,
                        CharSequence msg,
                        Element e,
                        AnnotationMirror a,
                        AnnotationValue v)
        Prints a message of the specified kind at the location of the annotation value inside the annotation mirror of the annotated element.
        Parameters:
        kind - the kind of message
        msg - the message, or an empty string if none
        e - the annotated element
        a - the annotation containing the annotation value
        v - the annotation value to use as a position hint

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/annotation/processing/Messager.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut