langtools/src/share/classes/com/sun/mirror/apt/AnnotationProcessorListener.java
changeset 3378 22011d9a9398
parent 10 06bc494ca11e
child 5520 86e4b9a9da40
equal deleted inserted replaced
3377:22083952ee8f 3378:22011d9a9398
    26 package com.sun.mirror.apt;
    26 package com.sun.mirror.apt;
    27 
    27 
    28 /**
    28 /**
    29  * Superinterface for all annotation processor event listeners.
    29  * Superinterface for all annotation processor event listeners.
    30  *
    30  *
       
    31  * @deprecated All components of this API have been superseded by the
       
    32  * standardized annotation processing API.  This interface has no
       
    33  * direct analog in the standardized API because the different round
       
    34  * model renders it unnecessary.
       
    35  *
    31  * @author Joseph D. Darcy
    36  * @author Joseph D. Darcy
    32  * @author Scott Seligman
    37  * @author Scott Seligman
    33  * @since 1.5
    38  * @since 1.5
    34  */
    39  */
       
    40 @Deprecated
       
    41 @SuppressWarnings("deprecation")
    35 public interface AnnotationProcessorListener extends java.util.EventListener {}
    42 public interface AnnotationProcessorListener extends java.util.EventListener {}