Package org.apache.xerces.xni
Interface XMLResourceIdentifier
-
- All Known Subinterfaces:
XMLDTDDescription,XMLGrammarDescription,XMLSchemaDescription
public interface XMLResourceIdentifierThis represents the basic physical description of the location of any XML resource (a Schema grammar, a DTD, a general entity etc.)
- Version:
- $Id: XMLResourceIdentifier.java 570132 2007-08-27 14:12:43Z mrglavas $
- Author:
- Neil Graham, IBM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBaseSystemId()Returns the base URI against which the literal SystemId is to be resolved.java.lang.StringgetExpandedSystemId()Returns the expanded system identifier.java.lang.StringgetLiteralSystemId()Returns the literal system identifier.java.lang.StringgetNamespace()Returns the namespace of the resource.java.lang.StringgetPublicId()Returns the public identifier.voidsetBaseSystemId(java.lang.String systemId)Sets the base URI against which the literal SystemId is to be resolved.voidsetExpandedSystemId(java.lang.String systemId)Sets the expanded system identifier.voidsetLiteralSystemId(java.lang.String systemId)Sets the literal system identifier.voidsetNamespace(java.lang.String namespace)Sets the namespace of the resource.voidsetPublicId(java.lang.String publicId)Sets the public identifier.
-
-
-
Method Detail
-
setPublicId
void setPublicId(java.lang.String publicId)
Sets the public identifier.
-
getPublicId
java.lang.String getPublicId()
Returns the public identifier.
-
setExpandedSystemId
void setExpandedSystemId(java.lang.String systemId)
Sets the expanded system identifier.
-
getExpandedSystemId
java.lang.String getExpandedSystemId()
Returns the expanded system identifier.
-
setLiteralSystemId
void setLiteralSystemId(java.lang.String systemId)
Sets the literal system identifier.
-
getLiteralSystemId
java.lang.String getLiteralSystemId()
Returns the literal system identifier.
-
setBaseSystemId
void setBaseSystemId(java.lang.String systemId)
Sets the base URI against which the literal SystemId is to be resolved.
-
getBaseSystemId
java.lang.String getBaseSystemId()
Returns the base URI against which the literal SystemId is to be resolved.
-
setNamespace
void setNamespace(java.lang.String namespace)
Sets the namespace of the resource.
-
getNamespace
java.lang.String getNamespace()
Returns the namespace of the resource.
-
-