1 7 8 package javax.annotation.processing; 9 10 import java.util.Map ; 11 import java.util.List ; 12 import java.util.Locale ; 13 import javax.lang.model.SourceVersion; 14 import javax.lang.model.util.Elements; 15 import javax.lang.model.util.Types; 16 import java.io.File ; 17 18 46 public interface ProcessingEnvironment { 47 65 Map <String ,String > getOptions(); 66 67 73 Messager getMessager(); 74 75 81 Filer getFiler(); 82 83 89 Elements getElementUtils(); 90 91 97 Types getTypeUtils(); 98 99 108 SourceVersion getSourceVersion(); 109 110 118 Locale getLocale(); 119 } 120 | Popular Tags |