Java Code Examples for javax.tools.Diagnostic.Kind#NOTE

The following examples show how to use javax.tools.Diagnostic.Kind#NOTE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AnnotatedMixins.java    From Mixin with MIT License 5 votes vote down vote up
/**
 * Print a message to the AP messager
 */
@Override
public void printMessage(Kind kind, CharSequence msg) {
    if (this.env == CompilerEnvironment.JAVAC || kind != Kind.NOTE) {
        this.processingEnv.getMessager().printMessage(kind, msg);
    }
}
 
Example 2
Source File: ResolveHarness.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
VerboseResolutionNoteProcessor() {
    super(Kind.NOTE,
            "compiler.note.verbose.resolve.multi",
            "compiler.note.verbose.resolve.multi.1");
}
 
Example 3
Source File: ResolveHarness.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public VerboseDeferredInferenceNoteProcessor() {
    super(Kind.NOTE, "compiler.note.deferred.method.inst");
}
 
Example 4
Source File: ResolveHarness.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
VerboseResolutionNoteProcessor() {
    super(Kind.NOTE,
            "compiler.note.verbose.resolve.multi",
            "compiler.note.verbose.resolve.multi.1");
}
 
Example 5
Source File: ResolveHarness.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public VerboseDeferredInferenceNoteProcessor() {
    super(Kind.NOTE, "compiler.note.deferred.method.inst");
}
 
Example 6
Source File: ResolveHarness.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
VerboseResolutionNoteProcessor() {
    super(Kind.NOTE,
            "compiler.note.verbose.resolve.multi",
            "compiler.note.verbose.resolve.multi.1");
}
 
Example 7
Source File: ResolveHarness.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public VerboseDeferredInferenceNoteProcessor() {
    super(Kind.NOTE, "compiler.note.deferred.method.inst");
}
 
Example 8
Source File: ResolveHarness.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
VerboseResolutionNoteProcessor() {
    super(Kind.NOTE,
            "compiler.note.verbose.resolve.multi",
            "compiler.note.verbose.resolve.multi.1");
}
 
Example 9
Source File: ResolveHarness.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public VerboseDeferredInferenceNoteProcessor() {
    super(Kind.NOTE, "compiler.note.deferred.method.inst");
}
 
Example 10
Source File: ResolveHarness.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
VerboseResolutionNoteProcessor() {
    super(Kind.NOTE,
            "compiler.note.verbose.resolve.multi",
            "compiler.note.verbose.resolve.multi.1");
}
 
Example 11
Source File: ResolveHarness.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public VerboseDeferredInferenceNoteProcessor() {
    super(Kind.NOTE, "compiler.note.deferred.method.inst");
}
 
Example 12
Source File: ResolveHarness.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
VerboseResolutionNoteProcessor() {
    super(Kind.NOTE,
            "compiler.note.verbose.resolve.multi",
            "compiler.note.verbose.resolve.multi.1");
}
 
Example 13
Source File: ResolveHarness.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public VerboseDeferredInferenceNoteProcessor() {
    super(Kind.NOTE, "compiler.note.deferred.method.inst");
}
 
Example 14
Source File: ResolveHarness.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
VerboseResolutionNoteProcessor() {
    super(Kind.NOTE,
            "compiler.note.verbose.resolve.multi",
            "compiler.note.verbose.resolve.multi.1");
}
 
Example 15
Source File: ResolveHarness.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public VerboseDeferredInferenceNoteProcessor() {
    super(Kind.NOTE, "compiler.note.deferred.method.inst");
}
 
Example 16
Source File: ResolveHarness.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
VerboseResolutionNoteProcessor() {
    super(Kind.NOTE,
            "compiler.note.verbose.resolve.multi",
            "compiler.note.verbose.resolve.multi.1");
}
 
Example 17
Source File: ResolveHarness.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public VerboseDeferredInferenceNoteProcessor() {
    super(Kind.NOTE, "compiler.note.deferred.method.inst");
}