1 7 8 package com.sun.mirror.apt; 9 10 22 public abstract class RoundCompleteEvent extends java.util.EventObject { 23 private RoundState rs; 24 25 32 protected RoundCompleteEvent(AnnotationProcessorEnvironment source, 33 RoundState rs) { 34 super(source); 35 this.rs = rs; 36 } 37 38 41 public RoundState getRoundState() { 42 return rs; 43 } 44 45 48 public AnnotationProcessorEnvironment getSource() { 49 return (AnnotationProcessorEnvironment)super.getSource(); 50 } 51 } 52 | Popular Tags |