JavaTM Platform
Standard Ed. 6

javax.annotation.processing
接口 Messager


public interface Messager

Messager 提供注释处理器用来报告错误消息、警告和其他通知的方式。可以传递元素、注释和注释值,以提供消息的位置提示。不过,这类位置提示可能是不可用的,或者只是大概的提示。

打印带有错误种类的消息将产生一个错误

注意,由此接口中的方法“打印”的消息可能作为某一位置的文本输出(如 System.outSystem.err)出现,也可能不会这样。这些实现可以选择以不同的方式(比如窗口中的消息)表示此信息。

从以下版本开始:
1.6
另请参见:
ProcessingEnvironment.getLocale()

方法摘要
 void printMessage(Diagnostic.Kind kind, CharSequence msg)
          打印指定种类的消息。
 void printMessage(Diagnostic.Kind kind, CharSequence msg, Element e)
          在元素的位置上打印指定种类的消息。
 void printMessage(Diagnostic.Kind kind, CharSequence msg, Element e, AnnotationMirror a)
          在已注释元素的注释镜像位置上打印指定种类的消息。
 void printMessage(Diagnostic.Kind kind, CharSequence msg, Element e, AnnotationMirror a, AnnotationValue v)
          在已注释元素的注释镜像内部注释值的位置上打印指定种类的消息。
 

方法详细信息

printMessage

void printMessage(Diagnostic.Kind kind,
                  CharSequence msg)
打印指定种类的消息。

参数:
kind - 消息的种类
msg - 消息;如果没有消息,则该参数是一个空字符串

printMessage

void printMessage(Diagnostic.Kind kind,
                  CharSequence msg,
                  Element e)
在元素的位置上打印指定种类的消息。

参数:
kind - 消息的种类
msg - 消息;如果没有消息,则该参数是一个空字符串
e - 用作位置提示的元素

printMessage

void printMessage(Diagnostic.Kind kind,
                  CharSequence msg,
                  Element e,
                  AnnotationMirror a)
在已注释元素的注释镜像位置上打印指定种类的消息。

参数:
kind - 消息的种类
msg - 消息;如果没有消息,则该参数是一个空字符串
e - 已注释的元素
a - 用作位置提示的注释

printMessage

void printMessage(Diagnostic.Kind kind,
                  CharSequence msg,
                  Element e,
                  AnnotationMirror a,
                  AnnotationValue v)
在已注释元素的注释镜像内部注释值的位置上打印指定种类的消息。

参数:
kind - 消息的种类
msg - 消息;如果没有消息,则该参数是一个空字符串
e - 已注释的元素
a - 包含注释值的注释
v - 用作位置提示的注释值

JavaTM Platform
Standard Ed. 6

提交错误或意见
有关更多的 API 参考资料和开发人员文档,请参阅 Java SE 开发人员文档。该文档包含更详细的、面向开发人员的描述,以及总体概述、术语定义、使用技巧和工作代码示例。

版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策