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

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

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

Element.getNamespaceDeclarationCount介绍

暂无

代码示例

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

  1. public Iterator getNamespaceAxisIterator(Object o)
  2. {
  3. if (! isElement(o)) {
  4. return JaxenConstants.EMPTY_ITERATOR;
  5. }
  6. Map nsMap = new HashMap();
  7. Element elt = (Element)o;
  8. ParentNode parent = elt;
  9. while (parent instanceof Element) {
  10. elt = (Element)parent;
  11. String uri = elt.getNamespaceURI();
  12. String prefix = elt.getNamespacePrefix();
  13. addNamespaceForElement(elt, uri, prefix, nsMap);
  14. int count = elt.getNamespaceDeclarationCount();
  15. for (int i = 0; i < count; i++) {
  16. prefix = elt.getNamespacePrefix(i);
  17. uri = elt.getNamespaceURI(prefix);
  18. addNamespaceForElement(elt, uri, prefix, nsMap);
  19. }
  20. parent = elt.getParent();
  21. }
  22. addNamespaceForElement(elt, "http://www.w3.org/XML/1998/namespace", "xml", nsMap);
  23. return nsMap.values().iterator();
  24. }
  25. }

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

  1. /**
  2. * @param node
  3. * @param count
  4. */
  5. private static List<String> getNamespaceURIList(Element node) {
  6. List<String> namespaceURIList = new ArrayList<String>();
  7. for (int i = 0; i < node.getNamespaceDeclarationCount(); i++) {
  8. String prefix = node.getNamespacePrefix(i);
  9. String refNamespaceURI = node.getNamespaceURI(prefix);
  10. namespaceURIList.add(refNamespaceURI);
  11. }
  12. return namespaceURIList;
  13. }

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

  1. /**
  2. * If the prefix for the Concordion namespace is something other than "concordion", eg "c", this
  3. * updates the stylesheet to use the prefix.
  4. * This is required since <a href="http://stackoverflow.com/questions/24628932/do-css-namespace-attribute-selectors-work-with-xhtml-html-elements">
  5. * namespaced CSS selectors generally don't work with HTML</a>, so <code>embedded.css</code> uses hardcoded namespace prefixes (eg. <code>[concordion\:example]</code>).
  6. */
  7. private String updateConcordionNamespacePrefix(Element html, String stylesheetContent) {
  8. for (int i=0; i<html.getNamespaceDeclarationCount(); i++) {
  9. String prefix = html.getNamespacePrefix(i);
  10. if (ConcordionBuilder.NAMESPACE_CONCORDION_2007.equals(html.getNamespaceURI(prefix))) {
  11. return stylesheetContent.replace("concordion\\:", prefix + "\\:");
  12. }
  13. }
  14. return stylesheetContent;
  15. }
  16. }

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

  1. /**
  2. * If the prefix for the Concordion namespace is something other than "concordion", eg "c", this
  3. * updates the stylesheet to use the prefix.
  4. * This is required since <a href="http://stackoverflow.com/questions/24628932/do-css-namespace-attribute-selectors-work-with-xhtml-html-elements">
  5. * namespaced CSS selectors generally don't work with HTML</a>, so <code>embedded.css</code> uses hardcoded namespace prefixes (eg. <code>[concordion\:example]</code>).
  6. */
  7. private String updateConcordionNamespacePrefix(Element html, String stylesheetContent) {
  8. for (int i=0; i<html.getNamespaceDeclarationCount(); i++) {
  9. String prefix = html.getNamespacePrefix(i);
  10. if (ConcordionBuilder.NAMESPACE_CONCORDION_2007.equals(html.getNamespaceURI(prefix))) {
  11. return stylesheetContent.replace("concordion\\:", prefix + "\\:");
  12. }
  13. }
  14. return stylesheetContent;
  15. }
  16. }

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

  1. private static Map getNamespacePrefixesInScopeNonPublic(Element element) {
  2. HashMap namespaces = new HashMap();
  3. do {
  4. int size = element.getNamespaceDeclarationCount();
  5. for (int i = 0; i < size; i++) {
  6. String prefix = element.getNamespacePrefix(i);
  7. if (!namespaces.containsKey(prefix)) {
  8. String uri = element.getNamespaceURI(prefix);
  9. namespaces.put(prefix, uri);
  10. }
  11. }
  12. ParentNode parent = element.getParent();
  13. element = (parent instanceof Element ? (Element) parent : null);
  14. } while (element != null);
  15. return namespaces;
  16. }

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

  1. private static Map getNamespacePrefixesInScopeNonPublic(Element element) {
  2. HashMap namespaces = new HashMap();
  3. do {
  4. int size = element.getNamespaceDeclarationCount();
  5. for (int i = 0; i < size; i++) {
  6. String prefix = element.getNamespacePrefix(i);
  7. if (!namespaces.containsKey(prefix)) {
  8. String uri = element.getNamespaceURI(prefix);
  9. namespaces.put(prefix, uri);
  10. }
  11. }
  12. ParentNode parent = element.getParent();
  13. element = (parent instanceof Element ? (Element) parent : null);
  14. } while (element != null);
  15. return namespaces;
  16. }

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

  1. private void writeNamespaceDeclarations(Element elem) {
  2. int count = elem.getNamespaceDeclarationCount();
  3. if (count == 1)
  4. return; // elem.getNamespaceURI() has already been written
  5. for (int i = 0; i < count; i++) {
  6. String prefix = elem.getNamespacePrefix(i);
  7. String uri = elem.getNamespaceURI(prefix);
  8. if (prefix.equals(elem.getNamespacePrefix()) && uri.equals(elem.getNamespaceURI())) {
  9. // if (DEBUG) System.err.println("********** NAMESPACE IGNORED ON WRITE ***************\n");
  10. continue;
  11. }
  12. nodeTokens.add((byte)NAMESPACE_DECLARATION);
  13. writeIndex(prefix);
  14. writeIndex(uri);
  15. }
  16. }

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

  1. private void writeNamespaceDeclarations(Element elem) {
  2. int count = elem.getNamespaceDeclarationCount();
  3. if (count == 1)
  4. return; // elem.getNamespaceURI() has already been written
  5. for (int i = 0; i < count; i++) {
  6. String prefix = elem.getNamespacePrefix(i);
  7. String uri = elem.getNamespaceURI(prefix);
  8. if (prefix.equals(elem.getNamespacePrefix()) && uri.equals(elem.getNamespaceURI())) {
  9. // if (DEBUG) System.err.println("********** NAMESPACE IGNORED ON WRITE ***************\n");
  10. continue;
  11. }
  12. nodeTokens.add((byte)NAMESPACE_DECLARATION);
  13. writeIndex(prefix);
  14. writeIndex(uri);
  15. }
  16. }

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

  1. if (node instanceof Element) {
  2. Element elem = (Element) node;
  3. int size = elem.getNamespaceDeclarationCount();
  4. if (size == 0) {
  5. return NamespaceBinding.EMPTY_ARRAY;

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

  1. if (node instanceof Element) {
  2. Element elem = (Element) node;
  3. int size = elem.getNamespaceDeclarationCount();
  4. if (size == 0) {
  5. return NamespaceBinding.EMPTY_ARRAY;

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

  1. if (node instanceof Element) {
  2. Element elem = (Element) node;
  3. int size = elem.getNamespaceDeclarationCount();
  4. if (size == 0) {
  5. return NamespaceBinding.EMPTY_ARRAY;

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

  1. final boolean hasXmlns = rootElement.getNamespaceDeclarationCount() > 0;
  2. if (hasXmlns || StringUtil.isNotEmpty(nsPrefix)) {
  3. outRoot.addAttribute(new Attribute("targetNamespace", rootElement.getNamespaceURI()));
  4. for (int i = 0; i < rootElement.getNamespaceDeclarationCount(); i++) {
  5. final String nsPrefix2 = rootElement.getNamespacePrefix(i);
  6. final String nsURI = rootElement.getNamespaceURI(nsPrefix2);

相关文章