nu.xom.Element.getAttributeCount()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(5.9k)|赞(0)|评价(0)|浏览(331)

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

Element.getAttributeCount介绍

暂无

代码示例

代码示例来源:origin: com.thoughtworks.xstream/xstream

  1. public int getAttributeCount() {
  2. return currentElement.getAttributeCount();
  3. }

代码示例来源:origin: jaxen/jaxen

  1. public Iterator getAttributeAxisIterator(Object o) {
  2. if (isElement(o)) {
  3. return new IndexIterator(o, 0, ((Element)o).getAttributeCount()) {
  4. public Object get(Object o, int i) {
  5. return ((Element)o).getAttribute(i);
  6. }
  7. };
  8. }
  9. return JaxenConstants.EMPTY_ITERATOR;
  10. }

代码示例来源:origin: x-stream/xstream

  1. @Override
  2. public int getAttributeCount() {
  3. return currentElement.getAttributeCount();
  4. }

代码示例来源:origin: edu.internet2.middleware.grouper/grouperClient

  1. public int getAttributeCount() {
  2. return currentElement.getAttributeCount();
  3. }

代码示例来源:origin: org.jvnet.hudson/xstream

  1. public int getAttributeCount() {
  2. return currentElement.getAttributeCount();
  3. }

代码示例来源:origin: ovea-deprecated/jetty-session-redis

  1. public int getAttributeCount() {
  2. return currentElement.getAttributeCount();
  3. }

代码示例来源:origin: com.haulmont.thirdparty/xstream

  1. public int getAttributeCount() {
  2. return currentElement.getAttributeCount();
  3. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. private void substituteAttributes(Element element) {
  2. // make a copy of attribute lists as we are resetting them
  3. int attCount = element.getAttributeCount();
  4. List<Attribute> attList = new ArrayList<Attribute>();
  5. for (int j = 0; j < attCount; j++) {
  6. Attribute att = element.getAttribute(j);
  7. attList.add(att);
  8. }
  9. for (Attribute att : attList) {
  10. this.substituteNameByValue(att);
  11. }
  12. }

代码示例来源:origin: teiid/teiid

  1. private NodeInfo advance() {
  2. Element elem = (Element) start.node;
  3. if (cursor == elem.getAttributeCount()) {
  4. return null;
  5. }
  6. NodeInfo curr = makeWrapper(elem.getAttribute(cursor), docWrapper, start, cursor);
  7. cursor++;
  8. return curr;
  9. }

代码示例来源:origin: org.jboss.teiid/teiid-engine

  1. private NodeInfo advance() {
  2. Element elem = (Element) start.node;
  3. if (cursor == elem.getAttributeCount()) return null;
  4. NodeInfo curr = makeWrapper(elem.getAttribute(cursor), docWrapper, start, cursor);
  5. cursor++;
  6. return curr;
  7. }

代码示例来源:origin: org.teiid/saxon-xom

  1. private NodeInfo advance() {
  2. Element elem = (Element) start.node;
  3. if (cursor == elem.getAttributeCount()) {
  4. return null;
  5. }
  6. NodeInfo curr = makeWrapper(elem.getAttribute(cursor), docWrapper, start, cursor);
  7. cursor++;
  8. return curr;
  9. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. /**
  2. * copies attributes. makes subclass if necessary.
  3. *
  4. * @param element to copy from
  5. */
  6. public void copyAttributesFrom(Element element) {
  7. for (int i = 0; i < element.getAttributeCount(); i++) {
  8. Attribute att = element.getAttribute(i);
  9. Attribute newAtt = (Attribute) att.copy();
  10. this.addAttribute(newAtt);
  11. }
  12. }

代码示例来源:origin: concordion/concordion

  1. public void moveAttributesTo(Element element) {
  2. for (int i=0; i<xomElement.getAttributeCount(); i++) {
  3. Attribute attribute = xomElement.getAttribute(i);
  4. xomElement.removeAttribute(attribute);
  5. element.xomElement.addAttribute(attribute);
  6. }
  7. }

代码示例来源:origin: org.concordion/concordion

  1. public void moveAttributesTo(Element element) {
  2. for (int i=0; i<xomElement.getAttributeCount(); i++) {
  3. Attribute attribute = xomElement.getAttribute(i);
  4. xomElement.removeAttribute(attribute);
  5. element.xomElement.addAttribute(attribute);
  6. }
  7. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. /**
  2. * copies atributes of 'from' to 'to'
  3. * @param element
  4. */
  5. public static void copyAttributes(Element from, Element to) {
  6. int natt = from.getAttributeCount();
  7. for (int i = 0; i < natt; i++) {
  8. Attribute newAtt = new Attribute(from.getAttribute(i));
  9. to.addAttribute(newAtt);
  10. }
  11. }

代码示例来源:origin: DSpace/DSpace

  1. protected void processUnexpectedAttributes(Element element, List<SwordValidationInfo> attributeItems) {
  2. int attributeCount = element.getAttributeCount();
  3. Attribute attribute = null;
  4. for (int i = 0; i < attributeCount; i++) {
  5. attribute = element.getAttribute(i);
  6. XmlName attributeName = new XmlName(attribute.getNamespacePrefix(),
  7. attribute.getLocalName(),
  8. attribute.getNamespaceURI());
  9. SwordValidationInfo info = new SwordValidationInfo(xmlName, attributeName,
  10. SwordValidationInfo.UNKNOWN_ATTRIBUTE,
  11. SwordValidationInfoType.INFO);
  12. info.setContentDescription(attribute.getValue());
  13. attributeItems.add(info);
  14. }
  15. }

代码示例来源:origin: se.vgregion.pubsubhubbub/pubsubhubbub-hub-composite-pubsub

  1. public DefaultField(Element elm) {
  2. this.name = elm.getLocalName();
  3. this.namespace = elm.getNamespaceURI();
  4. this.prefix = elm.getNamespacePrefix();
  5. for(int i = 0; i<elm.getAttributeCount(); i++) {
  6. Attribute attribute = elm.getAttribute(i);
  7. fields.add(new DefaultField(attribute.getNamespaceURI(), attribute.getNamespacePrefix(), attribute.getLocalName(), attribute.getValue()));
  8. }
  9. this.content = XmlUtil.innerToString(elm);
  10. }

代码示例来源:origin: teiid/teiid

  1. final void writeStartTag(Element elem) {
  2. writeIndex(elem.getNamespacePrefix(), elem.getLocalName());
  3. int type = BEGIN_ELEMENT;
  4. if (elem.getNamespaceURI().length() == 0) {
  5. type = Util.noNamespace(type);
  6. } else {
  7. writeIndex(elem.getNamespaceURI());
  8. }
  9. nodeTokens.add((byte)type);
  10. for (int i = 0; i < elem.getAttributeCount(); i++) {
  11. writeAttribute(elem.getAttribute(i));
  12. }
  13. writeNamespaceDeclarations(elem);
  14. }

代码示例来源:origin: org.teiid/saxon-xom

  1. final void writeStartTag(Element elem) {
  2. writeIndex(elem.getNamespacePrefix(), elem.getLocalName());
  3. int type = BEGIN_ELEMENT;
  4. if (elem.getNamespaceURI().length() == 0) {
  5. type = Util.noNamespace(type);
  6. } else {
  7. writeIndex(elem.getNamespaceURI());
  8. }
  9. nodeTokens.add((byte)type);
  10. for (int i = 0; i < elem.getAttributeCount(); i++) {
  11. writeAttribute(elem.getAttribute(i));
  12. }
  13. writeNamespaceDeclarations(elem);
  14. }

代码示例来源:origin: wiztools/xsd-gen

  1. private void processAttributes(final Element inElement, final Element outElement) {
  2. for (int i = 0; i < inElement.getAttributeCount(); i++) {
  3. final Attribute attr = inElement.getAttribute(i);
  4. final String name = attr.getLocalName();
  5. final String value = attr.getValue();
  6. Element attrElement = new Element(xsdPrefix + ":attribute", XSD_NS_URI);
  7. attrElement.addAttribute(new Attribute("name", name));
  8. attrElement.addAttribute(new Attribute("type", xsdPrefix + TypeInferenceUtil.getTypeOfContent(value)));
  9. attrElement.addAttribute(new Attribute("use", "required"));
  10. outElement.appendChild(attrElement);
  11. }
  12. }

相关文章