langtools/src/share/classes/com/sun/source/util/TaskEvent.java
changeset 22163 3651128c74eb
parent 20612 4761f3ff7afb
child 24898 88fa65d2ac87
equal deleted inserted replaced
22162:3b3e23e67329 22163:3651128c74eb
    67         ANNOTATION_PROCESSING,
    67         ANNOTATION_PROCESSING,
    68         /**
    68         /**
    69          * For events relating to an individual annotation processing round.
    69          * For events relating to an individual annotation processing round.
    70          **/
    70          **/
    71         ANNOTATION_PROCESSING_ROUND
    71         ANNOTATION_PROCESSING_ROUND
    72     };
    72     }
    73 
    73 
    74     public TaskEvent(Kind kind) {
    74     public TaskEvent(Kind kind) {
    75         this(kind, null, null, null);
    75         this(kind, null, null, null);
    76     }
    76     }
    77 
    77