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

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

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

Element.getNamespaceURI介绍

暂无

代码示例

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

  1. public String getElementNamespaceUri(Object o) {
  2. return (isElement(o) ? ((Element)o).getNamespaceURI() : null);
  3. }

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

  1. public String translateNamespacePrefixToUri(String s, Object o) {
  2. Element element = null;
  3. if (o instanceof Element) {
  4. element = (Element) o;
  5. } else if (o instanceof ParentNode) {
  6. }
  7. else if (o instanceof Node) {
  8. element = (Element)((Node)o).getParent();
  9. }
  10. else if (o instanceof XPathNamespace)
  11. {
  12. element = ((XPathNamespace)o).getElement();
  13. }
  14. if (element != null) {
  15. return element.getNamespaceURI(s);
  16. }
  17. return null;
  18. }

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

  1. public String getNamespaceStringValue(Object o) {
  2. if (isElement(o)) {
  3. return ((Element)o).getNamespaceURI();
  4. } else if (isAttribute(o)) {
  5. return ((Attribute)o).getNamespaceURI();
  6. } else if (o instanceof XPathNamespace) {
  7. return ((XPathNamespace)o).getNamespaceURI();
  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: se.vgregion.pubsubhubbub/pubsubhubbub-hub-composite-pubsub

  1. private boolean isAtom(Element elm) {
  2. return Namespaces.ATOM.equals(elm.getNamespaceURI());
  3. }
  4. }

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

  1. static boolean isAtomicValue(Node node) {
  2. if (node instanceof Element) {
  3. Element elem = (Element) node;
  4. return elem.getLocalName().equals("atomic-value") &&
  5. elem.getNamespaceURI().equals("http://dsd.lbl.gov/nux");
  6. }
  7. return false;
  8. }

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

  1. static boolean isAtomicValue(Node node) {
  2. if (node instanceof Element) {
  3. Element elem = (Element) node;
  4. return elem.getLocalName().equals("atomic-value") &&
  5. elem.getNamespaceURI().equals("http://dsd.lbl.gov/nux");
  6. }
  7. return false;
  8. }

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

  1. /**
  2. * Determines if the specified element is an instance of the element name. If
  3. * you are checking the name title in the ATOM namespace, then the local name
  4. * should be 'title' and the namespaceURI is the URI for the ATOM namespace.
  5. *
  6. * @param element The specified element.
  7. * @param localName The local name for the element.
  8. * @param namespaceURI The namespace for the element.
  9. * @return True if the element matches the localname and namespace URI. Otherwise, false.
  10. */
  11. protected boolean isInstanceOf(Element element, String localName, String namespaceURI) {
  12. return (localName.equals(element.getLocalName()) &&
  13. namespaceURI.equals(element.getNamespaceURI()));
  14. }

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

  1. /**
  2. * Checks XML element local name and namespace URI.
  3. *
  4. * @param element XML element to check
  5. * @param xmlName XML element name
  6. * @return True if the element matches the localname and namespace URI. Otherwise, false.
  7. */
  8. protected boolean isInstanceOf(Element element, XmlName xmlName) {
  9. return (xmlName.getLocalName().equals(element.getLocalName()) &&
  10. xmlName.getNamespace().equals(element.getNamespaceURI()));
  11. }

代码示例来源: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.xml-cml/cmlxom

  1. /**
  2. * get namespaceURI for this attribute;
  3. *
  4. * @return the namespace
  5. */
  6. public String getNamespaceURIString() {
  7. Element element = this.getElement();
  8. String prefix = this.getPrefix();
  9. String namespaceURI = (prefix == null) ? null : element
  10. .getNamespaceURI(prefix);
  11. return namespaceURI;
  12. }

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

  1. /**
  2. *
  3. * @param element
  4. * @param xmlName
  5. * @return
  6. */
  7. protected boolean isInstanceOf(Element element, XmlName xmlName)
  8. {
  9. return (xmlName.getLocalName().equals(element.getLocalName()) &&
  10. xmlName.getNamespace().equals(element.getNamespaceURI()));
  11. }

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

  1. /**
  2. *
  3. * @param element
  4. * @param xmlName
  5. * @return
  6. */
  7. protected boolean isInstanceOf(Element element, XmlName xmlName)
  8. {
  9. return (xmlName.getLocalName().equals(element.getLocalName()) &&
  10. xmlName.getNamespace().equals(element.getNamespaceURI()));
  11. }

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

  1. @Override
  2. protected void appendCommentToDocument(String comment)
  3. throws SAXException {
  4. try {
  5. Element root = document.getRootElement();
  6. if ("http://www.xom.nu/fakeRoot".equals(root.getNamespaceURI())) {
  7. document.insertChild(nodeFactory.makeComment(comment), document.indexOf(root));
  8. } else {
  9. document.appendChild(nodeFactory.makeComment(comment));
  10. }
  11. } catch (XMLException e) {
  12. fatal(e);
  13. }
  14. }

代码示例来源:origin: nu.validator/htmlparser

  1. @Override
  2. protected void appendCommentToDocument(String comment)
  3. throws SAXException {
  4. try {
  5. Element root = document.getRootElement();
  6. if ("http://www.xom.nu/fakeRoot".equals(root.getNamespaceURI())) {
  7. document.insertChild(nodeFactory.makeComment(comment), document.indexOf(root));
  8. } else {
  9. document.appendChild(nodeFactory.makeComment(comment));
  10. }
  11. } catch (XMLException e) {
  12. fatal(e);
  13. }
  14. }

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

相关文章