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

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

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

Element.getAttribute介绍

暂无

代码示例

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

  1. public Object get(Object o, int i) {
  2. return ((Element)o).getAttribute(i);
  3. }
  4. };

代码示例来源: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: com.thoughtworks.xstream/xstream

  1. public String getAttribute(int index) {
  2. return currentElement.getAttribute(index).getValue();
  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: com.thoughtworks.xstream/xstream

  1. public String getAttributeName(int index) {
  2. return decodeAttribute(currentElement.getAttribute(index).getQualifiedName());
  3. }

代码示例来源: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: org.xml-cml/cmlxom

  1. /**
  2. * gets local value of dictRef value on element
  3. * eg dictRef="a:b" returns b
  4. * @param element
  5. * @return null id no dictRef ; value if no prefix
  6. */
  7. public static String getLocalValue(Element element) {
  8. Attribute att = element.getAttribute(NAME);
  9. String value = (att == null) ? null : att.getValue();
  10. String[] values = (value == null) ? null : value.split(CMLConstants.S_COLON);
  11. return (values == null) ? null : values[values.length-1];
  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: com.io7m.jstructural/io7m-jstructural-xom

  1. private static String kindAttribute(
  2. final Element e)
  3. {
  4. final Attribute et = e.getAttribute("kind", SXML.XML_URI.toString());
  5. assert et != null;
  6. final String r = et.getValue();
  7. assert r != null;
  8. return r;
  9. }

代码示例来源: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: com.io7m.jstructural/io7m-jstructural-xom

  1. private static URI sourceAttribute(
  2. final Element ec)
  3. throws URISyntaxException
  4. {
  5. final Attribute a = ec.getAttribute("source", SXML.XML_URI.toString());
  6. return new URI(a.getValue());
  7. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static String targetAttribute(
  2. final Element ec)
  3. {
  4. final Attribute a = ec.getAttribute("target", SXML.XML_URI.toString());
  5. return a.getValue();
  6. }

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

  1. @Override
  2. public String getAttribute(final int index) {
  3. return currentElement.getAttribute(index).getValue();
  4. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static
  2. @Nullable
  3. Integer heightAttribute(
  4. final Element ec)
  5. {
  6. final Attribute a = ec.getAttribute("height", SXML.XML_URI.toString());
  7. if (a == null) {
  8. return null;
  9. }
  10. return Integer.valueOf(a.getValue());
  11. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static
  2. @Nullable
  3. String typeAttribute(
  4. final Element e)
  5. {
  6. final Attribute et = e.getAttribute("type", SXML.XML_URI.toString());
  7. if (et == null) {
  8. return null;
  9. }
  10. return et.getValue();
  11. }

代码示例来源:origin: org.openbase/jul.extension.xml

  1. public static String parseAttributeValue(final String attributeName, final Element sourceElement) throws MissingAttributeException {
  2. Attribute attribute = sourceElement.getAttribute(attributeName);
  3. if (attribute == null) {
  4. throw new MissingAttributeException(attributeName, sourceElement);
  5. }
  6. return attribute.getValue();
  7. }

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

  1. @Override
  2. public String getAttributeName(final int index) {
  3. return decodeAttribute(currentElement.getAttribute(index).getQualifiedName());
  4. }

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

  1. private boolean hasContentTypeMetadata(Element head) {
  2. Elements metaChildren = head.getChildElements("meta");
  3. for (int i=0; i < metaChildren.size(); i++) {
  4. Element metaChild = metaChildren.get(i);
  5. Attribute httpEquiv = metaChild.getAttribute("http-equiv");
  6. if (httpEquiv != null && "content-type".equalsIgnoreCase(httpEquiv.getValue())) {
  7. return true;
  8. }
  9. }
  10. return false;
  11. }
  12. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static
  2. @Nullable
  3. SID idAttribute(
  4. final Element e)
  5. {
  6. final Attribute eid =
  7. e.getAttribute("id", "http://www.w3.org/XML/1998/namespace");
  8. if (eid == null) {
  9. return null;
  10. }
  11. return SID.newID(eid.getValue());
  12. }

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

  1. private boolean hasContentTypeMetadata(Element head) {
  2. Elements metaChildren = head.getChildElements("meta");
  3. for (int i=0; i < metaChildren.size(); i++) {
  4. Element metaChild = metaChildren.get(i);
  5. Attribute httpEquiv = metaChild.getAttribute("http-equiv");
  6. if (httpEquiv != null && "content-type".equalsIgnoreCase(httpEquiv.getValue())) {
  7. return true;
  8. }
  9. }
  10. return false;
  11. }
  12. }

相关文章