Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8012578

Provide a message abstraction to test/lib/JavacTestingAbstractProcessor

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • None
    • 7, 8
    • tools

      Food for thought, it would be feasible to add methods like

       155 void note(String msg) {
       156 messager.printMessage(Diagnostic.Kind.NOTE, msg);
       157 }
       158
       159 void note(String msg, Element e) {
       160 messager.printMessage(Diagnostic.Kind.NOTE, msg, e);
       161 }
       162
       163 void error(String msg, Element e) {
       164 messager.printMessage(Diagnostic.Kind.ERROR, msg, e);
       165 }

      to a Messager subinterface defined in JavacTestingAbstractProcesso

            Unassigned Unassigned
            jfranck Joel Borggrén-Franck (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: