本文整理了Java中org.apache.xerces.util.XMLAttributesImpl.getAugmentations()
方法的一些代码示例,展示了XMLAttributesImpl.getAugmentations()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLAttributesImpl.getAugmentations()
方法的具体详情如下:
包路径:org.apache.xerces.util.XMLAttributesImpl
类名称:XMLAttributesImpl
方法名:getAugmentations
[英]Look up an augmentations by attributes index.
[中]按属性查找增强索引。
代码示例来源:origin: org.seasar.teeda/teeda-extension
public Augmentations getAugmentations(String qName) {
return attributes.getAugmentations(qName);
}
代码示例来源:origin: org.seasar.teeda/teeda-extension
public Augmentations getAugmentations(String uri, String localName) {
return attributes.getAugmentations(uri, localName);
}
代码示例来源:origin: org.seasar.teeda/teeda-extension
public Augmentations getAugmentations(int attributeIndex) {
return attributes.getAugmentations(attributeIndex);
}
代码示例来源:origin: com.rackspace.apache/xerces2-xsd11
/** Fills in the XMLAttributes object. */
private void fillXMLAttributes2(Attributes2 att) {
fAttributes.removeAllAttributes();
final int len = att.getLength();
for (int i = 0; i < len; ++i) {
fillXMLAttribute(att, i);
fAttributes.setSpecified(i, att.isSpecified(i));
if (att.isDeclared(i)) {
fAttributes.getAugmentations(i).putItem(Constants.ATTRIBUTE_DECLARED, Boolean.TRUE);
}
}
}
代码示例来源:origin: com.rackspace.apache/xerces2-xsd11
Augmentations attrAugs = attrsImpl.getAugmentations(attrIdx);
attrAugs.putItem(XSAssertConstants.isAssertProcNeededForUnionAttr, fIsAssertProcessingNeededForSTUnionAttrs.get(attrIdx));
内容来源于网络,如有侵权,请联系作者删除!