Liquid XML Data Binder (C++, Java, VB6) / Reference / Java / Reference / com.liquid_technologies.ltxmllib20 / DOM / XmlElement / Java getNamespaceURI - XmlElement
In This Topic
    Java getNamespaceURI - XmlElement
    In This Topic
    String getNamespaceURI()
      Property Description  
        Property Name getNamespaceURI  
        Description Gets the full namespace for the element  
        Remarks Gets the namespace for the element. If the this class represented the element 'cust:LastName', then the namespace URI would be 'http://sample'

    <?xml version="1.0" encoding="UTF-8"?>
    <cust:Customer xmlns:cust="http://sample"
                            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                            xsi:schemaLocation="http://sample ElmNamespaceQualification.xsd"
                            clubCardMember="true"
                            cust:customerID="1234">
        <FirstName>Ray</FirstName>
        <MiddleInitial>G</MiddleInitial>
        <cust:LastName>Bayliss</cust:LastName>
    </cust:Customer>