org.apache.abdera.model.Element类的使用及代码示例

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

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

Element介绍

[英]Root interface for all elements in the Feed Object Model
[中]提要对象模型中所有元素的根接口

代码示例

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

  1. public QName getQName() {
  2. return internal.getQName();
  3. }

代码示例来源:origin: com.atlassian.streams/streams-testing

  1. @Override
  2. protected boolean matchesSafely(Element element, Description mismatchDescription)
  3. {
  4. if (!matcher.matches(element.getText()))
  5. {
  6. mismatchDescription.appendText("title ");
  7. matcher.describeMismatch(element.getText(), mismatchDescription);
  8. return false;
  9. }
  10. return true;
  11. }

代码示例来源: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 StreamBuilder writeElementText(String value) {
  2. if (!(current instanceof Element)) throw new IllegalStateException("Not currently an element");
  3. Element element = (Element) current;
  4. String text = element.getText();
  5. element.setText(text + value);
  6. return this;
  7. }

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

  1. /**
  2. * Set the value of dir attribute
  3. */
  4. public static <T extends Element> void setDirection(Direction direction, T element) {
  5. if (direction != Direction.UNSPECIFIED)
  6. element.setAttributeValue(DIR, direction.toString().toLowerCase());
  7. else if (direction == Direction.UNSPECIFIED)
  8. element.setAttributeValue(DIR, "");
  9. else if (direction == null)
  10. element.removeAttribute(DIR);
  11. }

代码示例来源: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-json

  1. private static void writeElement(Element child, QName parentqname, JSONStream jstream) throws IOException {
  2. QName childqname = child.getQName();
  3. String prefix = childqname.getPrefix();
  4. jstream.startObject();
  5. jstream.writeField("name", getName(childqname));
  6. jstream.writeField("attributes");
  7. List<QName> attributes = child.getAttributes();
  8. jstream.startObject();
  9. if (!isSameNamespace(childqname, parentqname)) {
  10. jstream.writeField("xml:base", child.getResolvedBaseUri());
  11. writeLanguageFields(child, jstream);
  12. for (QName attr : attributes) {
  13. jstream.writeField(name);
  14. if ("".equals(attr.getPrefix()) || "xml".equals(attr.getPrefix())) {
  15. String val = child.getAttributeValue(attr);
  16. if (val != null && ("href".equalsIgnoreCase(name) || "src".equalsIgnoreCase(name) || "action"
  17. .equalsIgnoreCase(name))) {
  18. IRI base = child.getResolvedBaseUri();
  19. if (base != null)
  20. val = base.resolve(val).toASCIIString();
  21. jstream.endObject();
  22. jstream.writeField("value");
  23. jstream.writeQuoted(child.getAttributeValue(attr));
  24. jstream.endObject();

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

  1. public <T extends Element>T setText(String text) {
  2. internal.setText(text);
  3. return (T)this;
  4. }

代码示例来源: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-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. }

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

  1. @Override
  2. protected void runTest() throws Throwable {
  3. Collection collection = abdera.getFactory().newCollection();
  4. collection.setAccept("image/png", "image/jpeg");
  5. List<Element> children = collection.getElements();
  6. assertThat(children).hasSize(2);
  7. assertThat(children.get(0).getQName()).isEqualTo(Constants.ACCEPT);
  8. assertThat(children.get(0).getText()).isEqualTo("image/png");
  9. assertThat(children.get(1).getQName()).isEqualTo(Constants.ACCEPT);
  10. assertThat(children.get(1).getText()).isEqualTo("image/jpeg");
  11. }
  12. }

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

  1. public void writeTo(org.apache.abdera.writer.Writer writer, OutputStream out, WriterOptions options)
  2. throws IOException {
  3. internal.writeTo(writer, out, options);
  4. }

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

  1. public <T extends Element> Document<T> getDocument() {
  2. Document<T> document = null;
  3. if (parent != null) {
  4. if (parent instanceof Element) {
  5. document = ((Element)parent).getDocument();
  6. } else if (parent instanceof Document) {
  7. document = (Document<T>)parent;
  8. }
  9. }
  10. return document;
  11. }

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

  1. public <T extends Element> T setAttributeValue(QName qname, String value) {
  2. internal.setAttributeValue(qname, value);
  3. return (T)this;
  4. }

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

  1. public Object clone() {
  2. try {
  3. ElementWrapper wrapper = (ElementWrapper) super.clone();
  4. wrapper.internal = (Element) internal.clone();
  5. return wrapper;
  6. } catch (CloneNotSupportedException e) {
  7. // won't happen
  8. return null;
  9. }
  10. }

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

  1. /**
  2. * Return the textual content of a child element using the in-scope directionality
  3. *
  4. * @param element The parent element
  5. * @param child The XML QName of the child element
  6. * @return The directionally-wrapped text of the child element
  7. */
  8. public static <T extends Element> String getBidiChildText(T element, QName child) {
  9. Element el = element.getFirstChild(child);
  10. return (el != null) ? getBidiText(getDirection(el), el.getText()) : null;
  11. }

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

  1. @SuppressWarnings("unchecked")
  2. private <T extends Element> T _sign(T element, SignatureOptions options) throws XMLSecurityException {
  3. element.setBaseUri(element.getResolvedBaseUri());
  4. org.w3c.dom.Element dom = fomToDom((Element)element.clone(), options);
  5. org.w3c.dom.Document domdoc = dom.getOwnerDocument();
  6. PrivateKey signingKey = options.getSigningKey();
  7. X509Certificate cert = options.getCertificate();
  8. PublicKey pkey = options.getPublicKey();
  9. IRI baseUri = element.getResolvedBaseUri();
  10. XMLSignature sig =
  11. new XMLSignature(domdoc, (baseUri != null) ? baseUri.toString() : "", options.getSigningAlgorithm());

代码示例来源: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. QName qname = new QName("urn:test", "attr", "p");
  5. element.setAttributeValue(qname, "value");
  6. assertThat(element.getAttributes()).containsExactly(qname);
  7. element.setAttributeValue(qname, null);
  8. assertThat(element.getAttributes()).isEmpty();
  9. }
  10. }

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

  1. public <T extends Element> List<T> getElements() {
  2. return internal.getElements();
  3. }

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

  1. public List<QName> getAttributes() {
  2. return internal.getAttributes();
  3. }

相关文章