| java.lang.Object org.apache.xmlgraphics.util.QName
QName | public class QName implements Serializable(Code) | | Represents a qualified name of an XML element or an XML attribute.
Note: This class allows to carry a namespace prefix but it is not used in the equals() and
hashCode() methods.
|
QName | public QName(String namespaceURI, String prefix, String localName)(Code) | | Main constructor.
Parameters: namespaceURI - the namespace URI Parameters: prefix - the namespace prefix, may be null Parameters: localName - the local name |
QName | public QName(String namespaceURI, String qName)(Code) | | Main constructor.
Parameters: namespaceURI - the namespace URI Parameters: qName - the qualified name |
getLocalName | public String getLocalName()(Code) | | the local name |
getNamespaceURI | public String getNamespaceURI()(Code) | | the namespace URI |
getPrefix | public String getPrefix()(Code) | | the namespace prefix |
getQName | public String getQName()(Code) | | the fully qualified name |
|
|