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

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

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

Element.getDocument介绍

[英]Returns the document to which this element belongs
[中]返回此元素所属的文档

代码示例

代码示例来源: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> Document<T> getDocument() {
  2. return internal.getDocument();
  3. }

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

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

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

  1. @SuppressWarnings("unchecked")
  2. private String getCharsetFromBase(Base base) {
  3. if (base == null)
  4. return null;
  5. if (base instanceof Document) {
  6. return ((Document)base).getCharset();
  7. } else if (base instanceof Element) {
  8. return getCharsetFromBase(((Element)base).getDocument());
  9. }
  10. return null;
  11. }

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

  1. /**
  2. * Attempt to guess the base direction using the charset encoding. This is a bit of a last resort approach
  3. */
  4. @SuppressWarnings("unchecked")
  5. public static <T extends Element> Direction guessDirectionFromEncoding(T element, boolean ignoredir) {
  6. if (!ignoredir && hasDirection(element))
  7. return getDirection(element);
  8. Document doc = element.getDocument();
  9. if (doc == null)
  10. return Direction.UNSPECIFIED;
  11. return Bidi.guessDirectionFromEncoding(doc.getCharset());
  12. }

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

  1. public void writeTo(Base base, WritableByteChannel out, WriterOptions options) throws IOException {
  2. String charset = options.getCharset();
  3. if (charset == null) {
  4. Document doc = null;
  5. if (base instanceof Document)
  6. doc = (Document)base;
  7. else if (base instanceof Element) {
  8. doc = ((Element)base).getDocument();
  9. }
  10. charset = doc != null ? doc.getCharset() : null;
  11. }
  12. writeTo(base, Channels.newWriter(out, charset != null ? charset : "utf-8"), options);
  13. }

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

  1. @SuppressWarnings("unchecked")
  2. public void writeTo(Base base, OutputStream out, WriterOptions options) throws IOException {
  3. out = getCompressedOutputStream(out, options);
  4. String charset = options.getCharset();
  5. if (charset == null) {
  6. if (base instanceof Document)
  7. charset = ((Document)base).getCharset();
  8. else if (base instanceof Element) {
  9. Document doc = ((Element)base).getDocument();
  10. if (doc != null)
  11. charset = doc.getCharset();
  12. }
  13. if (charset == null)
  14. charset = "UTF-8";
  15. } else {
  16. Document doc = null;
  17. if (base instanceof Document)
  18. doc = (Document)base;
  19. else if (base instanceof Element)
  20. doc = ((Element)base).getDocument();
  21. if (doc != null)
  22. doc.setCharset(charset);
  23. }
  24. base.writeTo(new OutputStreamWriter(out, charset));
  25. finishCompressedOutputStream(out, options);
  26. if (options.getAutoClose())
  27. out.close();
  28. }

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

  1. public void writeTo(
  2. Base base,
  3. WritableByteChannel out,
  4. WriterOptions options)
  5. throws IOException {
  6. String charset = options.getCharset();
  7. if (charset == null) {
  8. Document doc = null;
  9. if (base instanceof Document)
  10. doc = (Document) base;
  11. else if (base instanceof Element) {
  12. doc = ((Element)base).getDocument();
  13. }
  14. charset = doc != null ? doc.getCharset() : null;
  15. }
  16. writeTo(
  17. base,
  18. Channels.newWriter(
  19. out, charset != null ?
  20. charset :
  21. "utf-8"),
  22. options);
  23. }

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

  1. } else if (base instanceof Element) {
  2. Element el = (Element)base;
  3. if (el.getDocument() != null) {
  4. MimeType mt = el.getDocument().getContentType();
  5. type = (mt != null) ? mt.toString() : null;

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

  1. } else if (base instanceof Element) {
  2. Element el = (Element)base;
  3. if (el.getDocument() != null) {
  4. MimeType mt = el.getDocument().getContentType();
  5. type = (mt != null) ? mt.toString() : null;

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

  1. /**
  2. * Return a document
  3. */
  4. @SuppressWarnings("unchecked")
  5. public static ResponseContext returnBase(Base base, int status, Date lastModified) {
  6. log.debug(Localizer.get("RETURNING.DOCUMENT"));
  7. BaseResponseContext response = new BaseResponseContext(base);
  8. response.setStatus(status);
  9. if (lastModified != null)
  10. response.setLastModified(lastModified);
  11. // response.setContentType(MimeTypeHelper.getMimeType(base));
  12. Document doc = base instanceof Document ? (Document)base : ((Element)base).getDocument();
  13. if (doc.getEntityTag() != null) {
  14. response.setEntityTag(doc.getEntityTag());
  15. } else if (doc.getLastModified() != null) {
  16. response.setLastModified(doc.getLastModified());
  17. }
  18. return response;
  19. }

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

  1. private Document<Element> signDocument(Abdera abdera, Document<Element> doc) throws SecurityException {
  2. AbderaSecurity security = new AbderaSecurity(abdera);
  3. if (signingKey == null || cert == null)
  4. return doc; // pass through
  5. Signature sig = security.getSignature();
  6. SignatureOptions options = sig.getDefaultSignatureOptions();
  7. options.setCertificate(cert);
  8. options.setSigningKey(signingKey);
  9. if (algorithm != null)
  10. options.setSigningAlgorithm(algorithm);
  11. Element element = doc.getRoot();
  12. element = sig.sign(element, options);
  13. return element.getDocument();
  14. }

相关文章