langtools/src/share/classes/com/sun/mirror/apt/AnnotationProcessors.java
changeset 3378 22011d9a9398
parent 10 06bc494ca11e
child 5520 86e4b9a9da40
equal deleted inserted replaced
3377:22083952ee8f 3378:22011d9a9398
    29 import java.util.*;
    29 import java.util.*;
    30 
    30 
    31 /**
    31 /**
    32  * Utilities to create specialized annotation processors.
    32  * Utilities to create specialized annotation processors.
    33  *
    33  *
       
    34  * @deprecated All components of this API have been superseded by the
       
    35  * standardized annotation processing API.  There is no direct analog
       
    36  * of the functionality of this class in the standardized API.
       
    37  *
    34  * @since 1.5
    38  * @since 1.5
    35  * @author Joseph D. Darcy
    39  * @author Joseph D. Darcy
    36  * @author Scott Seligman
    40  * @author Scott Seligman
    37  */
    41  */
       
    42 @Deprecated
       
    43 @SuppressWarnings("deprecation")
    38 public class AnnotationProcessors {
    44 public class AnnotationProcessors {
    39     static class NoOpAP implements AnnotationProcessor {
    45     static class NoOpAP implements AnnotationProcessor {
    40         NoOpAP() {}
    46         NoOpAP() {}
    41         public void process(){}
    47         public void process(){}
    42     }
    48     }