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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DLint.java47 public class Lint class
49 /** The context key for the root Lint object. */
50 protected static final Context.Key<Lint> lintKey = new Context.Key<Lint>();
52 /** Get the root Lint instance. */
53 public static Lint instance(Context context) {
54 Lint instance = context.get(lintKey);
56 instance = new Lint(context);
64 public Lint augment(Attribute.Compound attr) {
73 public Lint augmen
101 protected Lint(Context context) { method in class:Lint
116 protected Lint(Lint other) { method in class:Lint
[all...]

Completed in 65 milliseconds