org.apache.abdera.model.Element.getAttributeValue()方法的使用及代码示例

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

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

Element.getAttributeValue介绍

[英]Returns the value of the named attribute
[中]返回命名属性的值

代码示例

代码示例来源:origin: org.apache.abdera/abdera-core

  1. public String getAttributeValue(String name) {
  2. return internal.getAttributeValue(name);
  3. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.abdera

  1. public String getAttributeValue(String name) {
  2. return internal.getAttributeValue(name);
  3. }

代码示例来源:origin: org.apache.abdera/abdera-core

  1. public String getAttributeValue(QName qname) {
  2. return internal.getAttributeValue(qname);
  3. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.abdera

  1. public String getAttributeValue(QName qname) {
  2. return internal.getAttributeValue(qname);
  3. }

代码示例来源:origin: org.apache.abdera/abdera-parser

  1. protected boolean isMatch(Element el) {
  2. if (attribute != null) {
  3. String val = el.getAttributeValue(attribute);
  4. return ((val == null && value == null) || (val == null && value != null && value.equals(defaultValue)) || (val != null && val
  5. .equals(value)));
  6. }
  7. return true;
  8. }
  9. }

代码示例来源:origin: org.apache.abdera/abdera-parser

  1. protected boolean isMatch(Element el) {
  2. if (attribute != null) {
  3. String val = FOMLink.getRelEquiv(el.getAttributeValue(attribute));
  4. return ((val == null && value == null) || (val == null && value != null && value
  5. .equalsIgnoreCase(defaultValue)) || (val != null && val.equalsIgnoreCase(value)));
  6. }
  7. return true;
  8. }
  9. }

代码示例来源:origin: org.apache.abdera/abdera-parser

  1. public Map<String, String> getAcceptMultiparted() {
  2. Map<String, String> accept = new HashMap<String, String>();
  3. Iterator<?> i = getChildrenWithName(ACCEPT);
  4. if (i == null || !i.hasNext())
  5. i = getChildrenWithName(PRE_RFC_ACCEPT);
  6. while (i.hasNext()) {
  7. Element e = (Element)i.next();
  8. String t = e.getText();
  9. if (t != null) {
  10. if (e.getAttributeValue(ALTERNATE) != null && e.getAttributeValue(ALTERNATE).trim().length() > 0) {
  11. accept.put(t.trim(), e.getAttributeValue(ALTERNATE));
  12. } else {
  13. accept.put(t.trim(), null);
  14. }
  15. }
  16. }
  17. return accept;
  18. }

代码示例来源:origin: org.apache.abdera/abdera-extensions-geo

  1. private static void getPositionAttributes(Element pos, Position position) {
  2. if (position != null) {
  3. String featuretypetag = pos.getAttributeValue("featuretypetag");
  4. String relationshiptag = pos.getAttributeValue("relationshiptag");
  5. String elevation = pos.getAttributeValue("elev");
  6. String floor = pos.getAttributeValue("floor");
  7. String radius = pos.getAttributeValue("radius");
  8. if (featuretypetag != null)
  9. position.setFeatureTypeTag(featuretypetag);
  10. if (featuretypetag != null)
  11. position.setRelationshipTag(relationshiptag);
  12. if (elevation != null)
  13. position.setElevation(Double.valueOf(elevation));
  14. if (floor != null)
  15. position.setFloor(Double.valueOf(floor));
  16. if (radius != null)
  17. position.setRadius(Double.valueOf(radius));
  18. }
  19. }

代码示例来源:origin: org.apache.abdera/abdera-parser

  1. @Override
  2. public String getLanguage() {
  3. if (Type.XHTML.equals(type)) {
  4. Element el = getValueElement();
  5. if (el != null && el.getAttributeValue(LANG) != null)
  6. return el.getAttributeValue(LANG);
  7. }
  8. return super.getLanguage();
  9. }

代码示例来源:origin: org.apache.abdera/abdera-parser

  1. @Override
  2. public String getLanguage() {
  3. if (Type.XHTML.equals(type)) {
  4. Element el = getValueElement();
  5. if (el.getAttributeValue(LANG) != null)
  6. return el.getAttributeValue(LANG);
  7. }
  8. return super.getLanguage();
  9. }

代码示例来源:origin: org.apache.abdera/abdera-extensions-main

  1. private static <T extends Element> boolean hasDirection(T element) {
  2. String dir = element.getAttributeValue("dir");
  3. if (dir != null && dir.length() > 0)
  4. return true;
  5. else if (dir == null) {
  6. // if the direction is unspecified on this element,
  7. // let's see if we've inherited it
  8. Base parent = element.getParentElement();
  9. if (parent != null && parent instanceof Element)
  10. return hasDirection((Element)parent);
  11. }
  12. return false;
  13. }
  14. }

代码示例来源:origin: org.apache.abdera/abdera-extensions-main

  1. /**
  2. * Return the text content of the specified attribute using the in-scope directionality
  3. *
  4. * @param element The parent element
  5. * @param name the name of the attribute
  6. * @return The directionally-wrapped text of the attribute
  7. */
  8. public static <T extends Element> String getBidiAttributeValue(T element, String name) {
  9. return getBidiText(getDirection(element), element.getAttributeValue(name));
  10. }

代码示例来源:origin: org.apache.abdera/abdera-extensions-main

  1. /**
  2. * Return the text content of the specified attribute using the in-scope directionality
  3. *
  4. * @param element The parent element
  5. * @param name the name of the attribute
  6. * @return The directionally-wrapped text of the attribute
  7. */
  8. public static <T extends Element> String getBidiAttributeValue(T element, QName name) {
  9. return getBidiText(getDirection(element), element.getAttributeValue(name));
  10. }

代码示例来源:origin: org.apache.abdera/abdera-parser

  1. @Override
  2. public IRI getResolvedBaseUri() {
  3. if (Type.XHTML.equals(type)) {
  4. Element el = getValueElement();
  5. if (el != null) {
  6. if (el.getAttributeValue(BASE) != null) {
  7. return super.getResolvedBaseUri().resolve(el.getAttributeValue(BASE));
  8. }
  9. }
  10. }
  11. return super.getResolvedBaseUri();
  12. }

代码示例来源:origin: org.apache.ws.commons.axiom/fom-testsuite

  1. @Override
  2. protected void runTest() throws Throwable {
  3. Element element = abdera.getFactory().newElement(new QName("test"));
  4. element.setAttributeValue(qname, "value");
  5. assertThat(element.getAttributeValue(qname)).isEqualTo("value");
  6. List<QName> attrs = element.getAttributes();
  7. assertThat(attrs).hasSize(1);
  8. QName actualQName = attrs.get(0);
  9. assertThat(actualQName).isEqualTo(qname);
  10. assertThat(actualQName.getPrefix()).isEqualTo(qname.getPrefix());
  11. }
  12. }

代码示例来源:origin: org.apache.abdera/abdera-parser

  1. @Override
  2. public IRI getResolvedBaseUri() {
  3. if (Type.XHTML.equals(type)) {
  4. Element el = getValueElement();
  5. if (el != null) {
  6. if (el.getAttributeValue(BASE) != null) {
  7. return super.getResolvedBaseUri().resolve(el.getAttributeValue(BASE));
  8. }
  9. }
  10. }
  11. return super.getResolvedBaseUri();
  12. }

代码示例来源:origin: org.apache.abdera/abdera-extensions-main

  1. /**
  2. * Get the in-scope direction for an element.
  3. */
  4. public static <T extends Element> Direction getDirection(T element) {
  5. Direction direction = Direction.UNSPECIFIED;
  6. String dir = element.getAttributeValue("dir");
  7. if (dir != null && dir.length() > 0)
  8. direction = Direction.valueOf(dir.toUpperCase());
  9. else if (dir == null) {
  10. // if the direction is unspecified on this element,
  11. // let's see if we've inherited it
  12. Base parent = element.getParentElement();
  13. if (parent != null && parent instanceof Element)
  14. direction = getDirection((Element)parent);
  15. }
  16. return direction;
  17. }

代码示例来源:origin: org.apache.abdera/abdera-parser

  1. @Override
  2. public IRI getBaseUri() {
  3. if (Type.XHTML.equals(type)) {
  4. Element el = getValueElement();
  5. if (el != null) {
  6. if (el.getAttributeValue(BASE) != null) {
  7. if (getAttributeValue(BASE) != null)
  8. return super.getBaseUri().resolve(el.getAttributeValue(BASE));
  9. else
  10. return _getUriValue(el.getAttributeValue(BASE));
  11. }
  12. }
  13. }
  14. return super.getBaseUri();
  15. }

代码示例来源:origin: org.apache.abdera/abdera-parser

  1. @Override
  2. public IRI getBaseUri() {
  3. if (Type.XHTML.equals(type)) {
  4. Element el = getValueElement();
  5. if (el != null) {
  6. if (el.getAttributeValue(BASE) != null) {
  7. if (getAttributeValue(BASE) != null)
  8. return super.getBaseUri().resolve(el.getAttributeValue(BASE));
  9. else
  10. return _getUriValue(el.getAttributeValue(BASE));
  11. }
  12. }
  13. }
  14. return super.getBaseUri();
  15. }

代码示例来源:origin: org.apache.abdera/abdera-extensions-serializer

  1. protected void process(Object source,
  2. ObjectContext objectContext,
  3. SerializationContext context,
  4. Conventions conventions) {
  5. StreamWriter sw = context.getStreamWriter();
  6. if (!(source instanceof Element))
  7. return;
  8. Element element = (Element)source;
  9. sw.startElement(element.getQName());
  10. for (QName attr : element.getAttributes())
  11. sw.writeAttribute(attr, element.getAttributeValue(attr));
  12. XPath xpath = context.getAbdera().getXPath();
  13. List<?> children = xpath.selectNodes("node()", element);
  14. for (Object child : children) {
  15. if (child instanceof Element) {
  16. process(child, new ObjectContext(child), context, conventions);
  17. } else if (child instanceof Comment) {
  18. Comment comment = (Comment)child;
  19. sw.writeComment(comment.getText());
  20. } else if (child instanceof ProcessingInstruction) {
  21. ProcessingInstruction pi = (ProcessingInstruction)child;
  22. sw.writePI(pi.getText(), pi.getTarget());
  23. } else if (child instanceof TextValue) {
  24. TextValue tv = (TextValue)child;
  25. sw.writeElementText(tv.getText());
  26. }
  27. }
  28. sw.endElement();
  29. }

相关文章