langtools/src/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java
changeset 5847 1908176fd6e3
parent 5841 7a8448425bb7
child 6143 79b7dee406cc
equal deleted inserted replaced
5846:6df0e6bcb388 5847:1908176fd6e3
    79 
    79 
    80 /**
    80 /**
    81  * Objects of this class hold and manage the state needed to support
    81  * Objects of this class hold and manage the state needed to support
    82  * annotation processing.
    82  * annotation processing.
    83  *
    83  *
    84  * <p><b>This is NOT part of any API supported by Sun Microsystems.
    84  * <p><b>This is NOT part of any supported API.
    85  * If you write code that depends on this, you do so at your own risk.
    85  * If you write code that depends on this, you do so at your own risk.
    86  * This code and its internal interfaces are subject to change or
    86  * This code and its internal interfaces are subject to change or
    87  * deletion without notice.</b>
    87  * deletion without notice.</b>
    88  */
    88  */
    89 public class JavacProcessingEnvironment implements ProcessingEnvironment, Closeable {
    89 public class JavacProcessingEnvironment implements ProcessingEnvironment, Closeable {
  1378             return Pattern.compile(s_prime);
  1378             return Pattern.compile(s_prime);
  1379         }
  1379         }
  1380     }
  1380     }
  1381 
  1381 
  1382     /**
  1382     /**
  1383      * For internal use by Sun Microsystems only.  This method will be
  1383      * For internal use only.  This method will be
  1384      * removed without warning.
  1384      * removed without warning.
  1385      */
  1385      */
  1386     public Context getContext() {
  1386     public Context getContext() {
  1387         return context;
  1387         return context;
  1388     }
  1388     }