langtools/src/share/classes/com/sun/mirror/apt/RoundCompleteEvent.java
changeset 11870 bc664cc5f2a0
parent 11863 ac6277ec304a
parent 11869 d659025e6575
child 11871 08f8da764f8f
equal deleted inserted replaced
11863:ac6277ec304a 11870:bc664cc5f2a0
     1 /*
       
     2  * Copyright (c) 2004, Oracle and/or its affiliates. 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.  Oracle designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22  * or visit www.oracle.com if you need additional information or have any
       
    23  * 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 }