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

Add new print method to doclet Reporter interface

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Fixed
    • Icon: P3 P3
    • 17
    • 17
    • tools
    • None

      The jdk.javadoc.doclet.Reporter interface does not provide a means to report a diagnostic at a position in an arbitrary file that may be read by a doclet.

      We should add the following methods:

      void print(FileObject fo, int start, int pos, int end, String msg)
      default void print(FileObject fo, int pos, String msg) { print(fo, pos, pos, pos, msg); }

            jjg Jonathan Gibbons
            jjg Jonathan Gibbons
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: