本文整理汇总了Java中com.sun.xml.internal.rngom.ast.builder.ElementAnnotationBuilder类的典型用法代码示例。如果您正苦于以下问题:Java ElementAnnotationBuilder类的具体用法?Java ElementAnnotationBuilder怎么用?Java ElementAnnotationBuilder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ElementAnnotationBuilder类属于com.sun.xml.internal.rngom.ast.builder包,在下文中一共展示了ElementAnnotationBuilder类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: makeElementAnnotationBuilder
import com.sun.xml.internal.rngom.ast.builder.ElementAnnotationBuilder; //导入依赖的package包/类
public ElementAnnotationBuilder makeElementAnnotationBuilder(String ns, String localName, String prefix, LocatorImpl loc, CommentListImpl comments, Context context) {
String qname;
if(prefix==null)
qname = localName;
else
qname = prefix+':'+localName;
return new ElementAnnotationBuilderImpl(dom.createElementNS(ns,qname));
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:DSchemaBuilderImpl.java
示例2: Documentation
import com.sun.xml.internal.rngom.ast.builder.ElementAnnotationBuilder; //导入依赖的package包/类
final public ParsedElementAnnotation Documentation() throws ParseException {
CommentList comments = getComments();
ElementAnnotationBuilder eab;
Token t;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case DOCUMENTATION:
t = jj_consume_token(DOCUMENTATION);
break;
case DOCUMENTATION_AFTER_SINGLE_LINE_COMMENT:
t = jj_consume_token(DOCUMENTATION_AFTER_SINGLE_LINE_COMMENT);
break;
default:
jj_la1[54] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
eab = sb.makeElementAnnotationBuilder(WellKnownNamespaces.RELAX_NG_COMPATIBILITY_ANNOTATIONS,
"documentation",
getCompatibilityPrefix(),
makeLocation(t),
comments,
getContext());
eab.addText(mungeComment(t.image), makeLocation(t), null);
label_19:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case DOCUMENTATION_CONTINUE:
;
break;
default:
jj_la1[55] = jj_gen;
break label_19;
}
t = jj_consume_token(DOCUMENTATION_CONTINUE);
eab.addText("\u005cn" + mungeComment(t.image), makeLocation(t), null);
}
{if (true) return eab.makeElementAnnotation();}
throw new Error("Missing return statement in function");
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:40,代码来源:CompactSyntax.java
示例3: PrefixedAnnotationElement
import com.sun.xml.internal.rngom.ast.builder.ElementAnnotationBuilder; //导入依赖的package包/类
final public ParsedElementAnnotation PrefixedAnnotationElement(boolean nested) throws ParseException {
CommentList comments = getComments();
Token t;
ElementAnnotationBuilder eab;
t = jj_consume_token(PREFIXED_NAME);
String qn = t.image;
int colon = qn.indexOf(':');
String prefix = qn.substring(0, colon);
String ns = lookupPrefix(prefix, t);
if (ns == this.inheritedNs) {
error("inherited_annotation_namespace", t);
ns = "";
}
else if (!nested && ns.equals(WellKnownNamespaces.RELAX_NG)) {
error("relax_ng_namespace", t);
ns = "";
}
else {
if (ns.length() == 0)
prefix = null;
}
eab = sb.makeElementAnnotationBuilder(ns, qn.substring(colon + 1), prefix,
makeLocation(t), comments, getContext());
AnnotationElementContent(eab);
{if (true) return eab.makeElementAnnotation();}
throw new Error("Missing return statement in function");
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:28,代码来源:CompactSyntax.java
示例4: UnprefixedAnnotationElement
import com.sun.xml.internal.rngom.ast.builder.ElementAnnotationBuilder; //导入依赖的package包/类
final public ParsedElementAnnotation UnprefixedAnnotationElement() throws ParseException {
CommentList comments = getComments();
LocatedString name;
ElementAnnotationBuilder eab;
name = UnprefixedName();
eab = sb.makeElementAnnotationBuilder("", name.getString(), null,
name.getLocation(), comments, getContext());
AnnotationElementContent(eab);
{if (true) return eab.makeElementAnnotation();}
throw new Error("Missing return statement in function");
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:CompactSyntax.java
示例5: IdentifierAnnotationElement
import com.sun.xml.internal.rngom.ast.builder.ElementAnnotationBuilder; //导入依赖的package包/类
final public ParsedElementAnnotation IdentifierAnnotationElement() throws ParseException {
CommentList comments = getComments();
LocatedString name;
ElementAnnotationBuilder eab;
name = Identifier();
eab = sb.makeElementAnnotationBuilder("", name.getString(), null,
name.getLocation(), comments, getContext());
AnnotationElementContent(eab);
{if (true) return eab.makeElementAnnotation();}
throw new Error("Missing return statement in function");
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:CompactSyntax.java
示例6: makeElementAnnotationBuilder
import com.sun.xml.internal.rngom.ast.builder.ElementAnnotationBuilder; //导入依赖的package包/类
public ElementAnnotationBuilder makeElementAnnotationBuilder(String ns,
String localName, String prefix, Location _loc, CommentList _comments,
Context context) {
LocationHost loc = cast(_loc);
CommentListHost comments = (CommentListHost) _comments;
return new ElementAnnotationBuilderHost(
lhs.makeElementAnnotationBuilder(ns, localName, prefix, loc.lhs, comments==null?null:comments.lhs, context),
rhs.makeElementAnnotationBuilder(ns, localName, prefix, loc.rhs, comments==null?null:comments.rhs, context) );
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:SchemaBuilderHost.java
注:本文中的com.sun.xml.internal.rngom.ast.builder.ElementAnnotationBuilder类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论