Package org.xmlpull.v1.builder
Interface XmlNotation
-
public interface XmlNotationRepresents Notation Information Item. There is a notation information item for each notation declared in the DTD.- Version:
- $Revision: 1.3 $
- Author:
- Aleksander Slominski
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDeclarationBaseUri()The base URI relative to which the system identifier should be resolved (i.e.StringgetName()The name of the notation.StringgetPublicIdentifier()The public identifier of the notation, normalized as described in 4.2.2 External Entities [XML].StringgetSystemIdentifier()The system identifier of the notation, as it appears in the declaration of the notation, without any additional URI escaping applied by the processor.
-
-
-
Method Detail
-
getName
String getName()
The name of the notation.
-
getSystemIdentifier
String getSystemIdentifier()
The system identifier of the notation, as it appears in the declaration of the notation, without any additional URI escaping applied by the processor. If no system identifier was specified, this property has no value.
-
getPublicIdentifier
String getPublicIdentifier()
The public identifier of the notation, normalized as described in 4.2.2 External Entities [XML]. If the notation has no public identifier, this property has no value.
-
getDeclarationBaseUri
String getDeclarationBaseUri()
The base URI relative to which the system identifier should be resolved (i.e. the base URI of the resource within which the notation declaration occurs).
-
-