Class XmlTag


  • public class XmlTag
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String localpart
      The local part.
      protected java.lang.String namespaceuri
      The name space URI.
    • Constructor Summary

      Constructors 
      Constructor Description
      XmlTag​(java.lang.String namespaceuri, java.lang.String localpart)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getLocalPart()
      Returns the local part of the element.
      java.lang.String getNamespace()
      Returns the namespace URI of the current element.
      java.lang.String toString()
      Get a string representation.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • namespaceuri

        protected java.lang.String namespaceuri
        The name space URI.
      • localpart

        protected java.lang.String localpart
        The local part.
    • Constructor Detail

      • XmlTag

        public XmlTag​(java.lang.String namespaceuri,
                      java.lang.String localpart)
    • Method Detail

      • getNamespace

        public java.lang.String getNamespace()
        Returns the namespace URI of the current element.
        Returns:
        The namespace.
      • getLocalPart

        public java.lang.String getLocalPart()
        Returns the local part of the element.
        Returns:
        Local part.
      • toString

        public java.lang.String toString()
        Get a string representation.
        Overrides:
        toString in class java.lang.Object