org.apache.xerces.util.XMLAttributesImpl.getAugmentations()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(116)

本文整理了Java中org.apache.xerces.util.XMLAttributesImpl.getAugmentations()方法的一些代码示例,展示了XMLAttributesImpl.getAugmentations()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLAttributesImpl.getAugmentations()方法的具体详情如下:
包路径:org.apache.xerces.util.XMLAttributesImpl
类名称:XMLAttributesImpl
方法名:getAugmentations

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));

相关文章