1 /*
   2  * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Sun designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Sun in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  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.mirror.apt;
  27 
  28 /**
  29  * Event for the completion of a round of annotation processing.
  30  *
  31  * <p>While this class extends the serializable <tt>EventObject</tt>, it
  32  * cannot meaningfully be serialized because all of the annotation
  33  * processing tool's internal state would potentially be needed.
  34  *
  35  * @deprecated All components of this API have been superseded by the
  36  * standardized annotation processing API.  This class has no direct
  37  * analog in the standardized API because the different round model
  38  * renders it unnecessary.
  39  *
  40  * @author Joseph D. Darcy
  41  * @author Scott Seligman
  42  * @since 1.5
  43  */
  44 @Deprecated
  45 @SuppressWarnings("deprecation")
  46 public abstract class RoundCompleteEvent extends java.util.EventObject {
  47     private RoundState rs;
  48 
  49     /**
  50      * The current <tt>AnnotationProcessorEnvironment</tt> is regarded
  51      * as the source of events.
  52      *
  53      * @param source The source of events
  54      * @param rs     The state of the round
  55      */
  56     protected RoundCompleteEvent(AnnotationProcessorEnvironment source,
  57                                  RoundState rs) {
  58         super(source);
  59         this.rs = rs;
  60     }
  61 
  62     /**
  63      * Return round state.
  64      */
  65     public RoundState getRoundState() {
  66         return rs;
  67     }
  68 
  69     /**
  70      * Return source.
  71      */
  72     public AnnotationProcessorEnvironment getSource() {
  73         return (AnnotationProcessorEnvironment)super.getSource();
  74     }
  75 }