35363738394041
public static final SchemaFactory INSTANCE = new BuiltinSchemaFactory(); Map<String, Schema> nonMarkupSchemas = Maps.newHashMap(); public BuiltinSchemaFactory() { this(new ErroringAlertSink(DefaultAlertPolicy.INSTANCE)); }
386387388389390391392
protected AlertPolicy getAlertPolicy() { return DefaultAlertPolicy.INSTANCE; } protected AlertSink createAlertSink() { return new ErroringAlertSink(getAlertPolicy()); }
101102103104105106107
namespace, name, value, null, null); } public TemplateName templateName(String dottedName) { return TemplateName.parseDottedName( new ErroringAlertSink(DefaultAlertPolicy.INSTANCE), pos(), dottedName); }
106107108109110111112
new ErroringAlertSink(DefaultAlertPolicy.INSTANCE), pos(), dottedName); } public TemplateName.FullyQualified fqTemplateName(String dottedName) { return TemplateName.parseFullyQualifiedDottedName( new ErroringAlertSink(DefaultAlertPolicy.INSTANCE), pos(), dottedName); }
387388389390391392393