protected Lint(Context context) {
// initialize values according to the lint options
Options options = Options.instance(context);
values = EnumSet.noneOf(LintCategory.class);
for (Map.Entry<String, LintCategory> e: map.entrySet()) {
if (options.lint(e.getKey()))
values.add(e.getValue());
}
suppressedValues = EnumSet.noneOf(LintCategory.class);