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

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

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

Element.getNamespacePrefix介绍

暂无

代码示例

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

  1. public String getNamespacePrefix(Object o) {
  2. if (isElement(o)) {
  3. return ((Element)o).getNamespacePrefix();
  4. } else if (isAttribute(o)) {
  5. return ((Attribute)o).getNamespacePrefix();
  6. } else if (o instanceof XPathNamespace) {
  7. return ((XPathNamespace)o).getNamespacePrefix();
  8. }
  9. return null;
  10. }

代码示例来源: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.teiid/saxon-xom

  1. /**
  2. * Get the prefix of the name of the node. This is defined only for elements and attributes.
  3. * If the node has no prefix, or for other kinds of node, return a zero-length string.
  4. *
  5. * @return The prefix of the name of the node.
  6. */
  7. public String getPrefix() {
  8. switch (nodeKind) {
  9. case Type.ELEMENT:
  10. return ((Element) node).getNamespacePrefix();
  11. case Type.ATTRIBUTE:
  12. return ((Attribute) node).getNamespacePrefix();
  13. default:
  14. return "";
  15. }
  16. }

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

  1. /**
  2. * Get the prefix of the name of the node. This is defined only for elements and attributes.
  3. * If the node has no prefix, or for other kinds of node, return a zero-length string.
  4. *
  5. * @return The prefix of the name of the node.
  6. */
  7. public String getPrefix() {
  8. switch (nodeKind) {
  9. case Type.ELEMENT:
  10. return ((Element) node).getNamespacePrefix();
  11. case Type.ATTRIBUTE:
  12. return ((Attribute) node).getNamespacePrefix();
  13. default:
  14. return "";
  15. }
  16. }

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

  1. /**
  2. * Get the prefix of the name of the node. This is defined only for elements and attributes.
  3. * If the node has no prefix, or for other kinds of node, return a zero-length string.
  4. *
  5. * @return The prefix of the name of the node.
  6. */
  7. public String getPrefix() {
  8. switch (nodeKind) {
  9. case Type.ELEMENT:
  10. return ((Element) node).getNamespacePrefix();
  11. case Type.ATTRIBUTE:
  12. return ((Attribute) node).getNamespacePrefix();
  13. default:
  14. return "";
  15. }
  16. }

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

  1. public XmlName(Element element) {
  2. this.prefix = element.getNamespacePrefix();
  3. this.localName = element.getLocalName();
  4. this.namespace = element.getNamespaceURI();
  5. }

代码示例来源:origin: org.dspace/dspace-sword-api

  1. public XmlName(Element element)
  2. {
  3. this.prefix = element.getNamespacePrefix();
  4. this.localName = element.getLocalName();
  5. this.namespace = element.getNamespaceURI();
  6. }

代码示例来源:origin: org.swordapp/sword-common

  1. public XmlName(Element element)
  2. {
  3. this.prefix = element.getNamespacePrefix();
  4. this.localName = element.getLocalName();
  5. this.namespace = element.getNamespaceURI();
  6. }

代码示例来源: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: se.vgregion.pubsubhubbub/pubsubhubbub-hub-composite-pubsub

  1. public DefaultField(Element elm) {
  2. this.name = elm.getLocalName();
  3. this.namespace = elm.getNamespaceURI();
  4. this.prefix = elm.getNamespacePrefix();
  5. for(int i = 0; i<elm.getAttributeCount(); i++) {
  6. Attribute attribute = elm.getAttribute(i);
  7. fields.add(new DefaultField(attribute.getNamespaceURI(), attribute.getNamespacePrefix(), attribute.getLocalName(), attribute.getValue()));
  8. }
  9. this.content = XmlUtil.innerToString(elm);
  10. }

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

  1. final void writeStartTag(Element elem) {
  2. writeIndex(elem.getNamespacePrefix(), elem.getLocalName());
  3. int type = BEGIN_ELEMENT;
  4. if (elem.getNamespaceURI().length() == 0) {
  5. type = Util.noNamespace(type);
  6. } else {
  7. writeIndex(elem.getNamespaceURI());
  8. }
  9. nodeTokens.add((byte)type);
  10. for (int i = 0; i < elem.getAttributeCount(); i++) {
  11. writeAttribute(elem.getAttribute(i));
  12. }
  13. writeNamespaceDeclarations(elem);
  14. }

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

  1. final void writeStartTag(Element elem) {
  2. writeIndex(elem.getNamespacePrefix(), elem.getLocalName());
  3. int type = BEGIN_ELEMENT;
  4. if (elem.getNamespaceURI().length() == 0) {
  5. type = Util.noNamespace(type);
  6. } else {
  7. writeIndex(elem.getNamespaceURI());
  8. }
  9. nodeTokens.add((byte)type);
  10. for (int i = 0; i < elem.getAttributeCount(); i++) {
  11. writeAttribute(elem.getAttribute(i));
  12. }
  13. writeNamespaceDeclarations(elem);
  14. }

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

  1. protected SwordValidationInfo handleIncorrectElement(Element element, Properties validationProperties)
  2. throws UnmarshallException {
  3. log.error(
  4. "Unexpected element. Expected: " + getQualifiedName() + ". Got: " +
  5. ((element != null) ? element.getQualifiedName() : "null"));
  6. if (validationProperties != null) {
  7. SwordValidationInfo info = new SwordValidationInfo(
  8. new XmlName(element.getNamespacePrefix(), element.getLocalName(),
  9. element.getNamespaceURI()),
  10. "This is not the expected element. Received: " +
  11. element.getQualifiedName() + " for namespaceUri: " +
  12. element.getNamespaceURI(), SwordValidationInfoType.ERROR
  13. );
  14. return info;
  15. } else {
  16. throw new UnmarshallException("Not a " + getQualifiedName() + " element");
  17. }
  18. }

代码示例来源:origin: org.swordapp/sword-common

  1. protected SwordValidationInfo handleIncorrectElement(Element element, Properties validationProperties)
  2. throws UnmarshallException
  3. {
  4. log.error("Unexpected element. Expected: " + getQualifiedName() + ". Got: " +
  5. ((element != null) ? element.getQualifiedName() : "null" ));
  6. if( validationProperties != null )
  7. {
  8. SwordValidationInfo info = new SwordValidationInfo(
  9. new XmlName(element.getNamespacePrefix(), element.getLocalName(), element.getNamespaceURI()),
  10. "This is not the expected element. Received: " + element.getQualifiedName() + " for namespaceUri: " + element.getNamespaceURI(),
  11. SwordValidationInfoType.ERROR
  12. );
  13. return info;
  14. }
  15. else
  16. {
  17. throw new UnmarshallException( "Not a " + getQualifiedName() + " element" );
  18. }
  19. }

相关文章