Searched defs:Apt (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DApt.java61 * Apt compiler phase.
69 public class Apt extends ListBuffer<Env<AttrContext>> { class in inherits:ListBuffer
89 protected static final Context.Key<Apt> aptKey =
90 new Context.Key<Apt>();
92 /** Get the Apt instance for this context. */
93 public static Apt instance(Context context) {
94 Apt instance = context.get(aptKey);
96 instance = new Apt(context);
101 protected Apt(Context context) { method in class:Apt

Completed in 28 milliseconds