src/share/classes/com/sun/tools/apt/mirror/apt/RoundCompleteEventImpl.java

Print this page




  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22  * CA 95054 USA or visit www.sun.com if you need additional information or
  23  * have any questions.
  24  */
  25 
  26 package com.sun.tools.apt.mirror.apt;
  27 
  28 import com.sun.mirror.apt.AnnotationProcessorEnvironment;
  29 import com.sun.mirror.apt.RoundCompleteEvent;
  30 import com.sun.mirror.apt.RoundState;
  31 

  32 public class RoundCompleteEventImpl extends RoundCompleteEvent {
  33     private static final long serialVersionUID = 7067621446720784300L;
  34 
  35     public RoundCompleteEventImpl(AnnotationProcessorEnvironment source,
  36                                   RoundState rs) {
  37         super(source, rs);
  38     }
  39 }


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22  * CA 95054 USA or visit www.sun.com if you need additional information or
  23  * have any questions.
  24  */
  25 
  26 package com.sun.tools.apt.mirror.apt;
  27 
  28 import com.sun.mirror.apt.AnnotationProcessorEnvironment;
  29 import com.sun.mirror.apt.RoundCompleteEvent;
  30 import com.sun.mirror.apt.RoundState;
  31 
  32 @SuppressWarnings("deprecation")
  33 public class RoundCompleteEventImpl extends RoundCompleteEvent {
  34     private static final long serialVersionUID = 7067621446720784300L;
  35 
  36     public RoundCompleteEventImpl(AnnotationProcessorEnvironment source,
  37                                   RoundState rs) {
  38         super(source, rs);
  39     }
  40 }