本文整理汇总了Java中com.sun.xml.internal.rngom.parse.Parseable类的典型用法代码示例。如果您正苦于以下问题:Java Parseable类的具体用法?Java Parseable怎么用?Java Parseable使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Parseable类属于com.sun.xml.internal.rngom.parse包,在下文中一共展示了Parseable类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: makeExternalRef
import com.sun.xml.internal.rngom.parse.Parseable; //导入依赖的package包/类
public ParsedPattern makeExternalRef(Parseable current, String uri, String ns, Scope scope,
Location loc, Annotations anno)
throws BuildException {
for (OpenIncludes inc = openIncludes;
inc != null;
inc = inc.parent) {
if (inc.uri.equals(uri)) {
error("recursive_include", uri, (Locator) loc);
return pb.makeError();
}
}
try {
return current.parseExternal(uri, new SchemaBuilderImpl(ns, uri, this), scope, ns);
} catch (IllegalSchemaException e) {
noteError();
return pb.makeError();
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:SchemaBuilderImpl.java
示例2: makeExternalRef
import com.sun.xml.internal.rngom.parse.Parseable; //导入依赖的package包/类
public ParsedPattern makeExternalRef(Parseable current, String uri, String ns, Scope scope,
Location loc, Annotations anno)
throws BuildException {
for (OpenIncludes inc = openIncludes;
inc != null;
inc = inc.parent) {
if (inc.uri.equals(uri)) {
error("recursive_include", uri, (Locator)loc);
return pb.makeError();
}
}
try {
return current.parseExternal(uri, new SchemaBuilderImpl(ns, uri, this), scope, ns );
}
catch (IllegalSchemaException e) {
noteError();
return pb.makeError();
}
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:20,代码来源:SchemaBuilderImpl.java
示例3: endInclude
import com.sun.xml.internal.rngom.parse.Parseable; //导入依赖的package包/类
public void endInclude(Parseable current, String uri, String ns,
Location loc, Annotations anno) throws BuildException {
for (OpenIncludes inc = sb.openIncludes;
inc != null;
inc = inc.parent) {
if (inc.uri.equals(uri)) {
sb.error("recursive_include", uri, (Locator) loc);
return;
}
}
for (Override o = overrides; o != null; o = o.next) {
o.replacementStatus = o.prp.getReplacementStatus();
o.prp.setReplacementStatus(RefPattern.REPLACEMENT_REQUIRE);
}
try {
SchemaBuilderImpl isb = new SchemaBuilderImpl(ns, uri, sb);
current.parseInclude(uri, isb, new GrammarImpl(isb, grammar), ns);
for (Override o = overrides; o != null; o = o.next) {
if (o.prp.getReplacementStatus() == RefPattern.REPLACEMENT_REQUIRE) {
if (o.prp.getName() == null) {
sb.error("missing_start_replacement", (Locator) loc);
} else {
sb.error("missing_define_replacement", o.prp.getName(), (Locator) loc);
}
}
}
} catch (IllegalSchemaException e) {
sb.noteError();
} finally {
for (Override o = overrides; o != null; o = o.next) {
o.prp.setReplacementStatus(o.replacementStatus);
}
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:36,代码来源:SchemaBuilderImpl.java
示例4: makeExternalRef
import com.sun.xml.internal.rngom.parse.Parseable; //导入依赖的package包/类
public ParsedPattern makeExternalRef(Parseable current, String uri,
String ns, Scope _scope, Location _loc, Annotations _anno)
throws BuildException, IllegalSchemaException {
ScopeHost scope = (ScopeHost) _scope;
LocationHost loc = cast(_loc);
AnnotationsHost anno = cast(_anno);
return new ParsedPatternHost(
lhs.makeExternalRef(current, uri, ns, scope.lhs, loc.lhs, anno.lhs),
rhs.makeExternalRef(current, uri, ns, scope.rhs, loc.rhs, anno.rhs) );
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:13,代码来源:SchemaBuilderHost.java
示例5: endInclude
import com.sun.xml.internal.rngom.parse.Parseable; //导入依赖的package包/类
public void endInclude(Parseable current, String uri, String ns, Location _loc, Annotations _anno) throws BuildException, IllegalSchemaException {
LocationHost loc = cast(_loc);
AnnotationsHost anno = cast(_anno);
lhs.endInclude( current, uri, ns, loc.lhs, anno.lhs );
rhs.endInclude( current, uri, ns, loc.rhs, anno.rhs );
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:IncludeHost.java
示例6: loadRELAXNG
import com.sun.xml.internal.rngom.parse.Parseable; //导入依赖的package包/类
/**
* Parses a RELAX NG grammar into an annotated grammar.
*/
private Model loadRELAXNG() throws SAXException {
// build DOM forest
final DOMForest forest = buildDOMForest( new RELAXNGInternalizationLogic() );
// use JAXP masquerading to validate the input document.
// DOMForest -> ExtensionBindingChecker -> RNGOM
XMLReaderCreator xrc = new XMLReaderCreator() {
public XMLReader createXMLReader() {
// foreset parser cannot change the receivers while it's working,
// so we need to have one XMLFilter that works as a buffer
XMLFilter buffer = new XMLFilterImpl() {
@Override
public void parse(InputSource source) throws IOException, SAXException {
forest.createParser().parse( source, this, this, this );
}
};
XMLFilter f = new ExtensionBindingChecker(Const.RELAXNG_URI,opt,errorReceiver);
f.setParent(buffer);
f.setEntityResolver(opt.entityResolver);
return f;
}
};
Parseable p = new SAXParseable( opt.getGrammars()[0], errorReceiver, xrc );
return loadRELAXNG(p);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:38,代码来源:ModelLoader.java
示例7: loadRELAXNGCompact
import com.sun.xml.internal.rngom.parse.Parseable; //导入依赖的package包/类
/**
* Loads RELAX NG compact syntax
*/
private Model loadRELAXNGCompact() {
if(opt.getBindFiles().length>0)
errorReceiver.error(new SAXParseException(
Messages.format(Messages.ERR_BINDING_FILE_NOT_SUPPORTED_FOR_RNC),null));
// TODO: entity resolver?
Parseable p = new CompactParseable( opt.getGrammars()[0], errorReceiver );
return loadRELAXNG(p);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:ModelLoader.java
示例8: endInclude
import com.sun.xml.internal.rngom.parse.Parseable; //导入依赖的package包/类
public void endInclude(Parseable current,String uri, String ns,
Location loc, Annotations anno) throws BuildException {
for (OpenIncludes inc = sb.openIncludes;
inc != null;
inc = inc.parent) {
if (inc.uri.equals(uri)) {
sb.error("recursive_include", uri, (Locator)loc);
return;
}
}
for (Override o = overrides; o != null; o = o.next) {
o.replacementStatus = o.prp.getReplacementStatus();
o.prp.setReplacementStatus(RefPattern.REPLACEMENT_REQUIRE);
}
try {
SchemaBuilderImpl isb = new SchemaBuilderImpl(ns, uri, sb);
current.parseInclude(uri, isb, new GrammarImpl(isb, grammar), ns);
for (Override o = overrides; o != null; o = o.next) {
if (o.prp.getReplacementStatus() == RefPattern.REPLACEMENT_REQUIRE) {
if (o.prp.getName() == null)
sb.error("missing_start_replacement", (Locator)loc);
else
sb.error("missing_define_replacement", o.prp.getName(), (Locator)loc);
}
}
}
catch (IllegalSchemaException e) {
sb.noteError();
}
finally {
for (Override o = overrides; o != null; o = o.next)
o.prp.setReplacementStatus(o.replacementStatus);
}
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:36,代码来源:SchemaBuilderImpl.java
注:本文中的com.sun.xml.internal.rngom.parse.Parseable类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论