Package net.sf.jasperreports.engine.util
Class XmlNamespace
- java.lang.Object
-
- net.sf.jasperreports.engine.util.XmlNamespace
-
public class XmlNamespace extends java.lang.ObjectAn XML namespace.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
- See Also:
JRXmlWriteHelper.startElement(String, XmlNamespace)
-
-
Constructor Summary
Constructors Constructor Description XmlNamespace(java.lang.String uri, java.lang.String prefix, java.lang.String schemaURI)Creates an XML namespace.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetNamespaceURI()Returns the namespace URI.java.lang.StringgetPrefix()Returns the namespace prefix.java.lang.StringgetSchemaURI()Returns the URI of the XML schema associated with the namespace.
-
-
-
Method Detail
-
getNamespaceURI
public java.lang.String getNamespaceURI()
Returns the namespace URI.- Returns:
- the namespace URI
-
getPrefix
public java.lang.String getPrefix()
Returns the namespace prefix.- Returns:
- the namespace prefix
-
getSchemaURI
public java.lang.String getSchemaURI()
Returns the URI of the XML schema associated with the namespace.- Returns:
- the namespace XML schema URI
-
-