Interface XMLResourceIdentifier
-
- All Known Subinterfaces:
XMLDTDDescription,XMLEntityDescription,XMLGrammarDescription,XMLSchemaDescription
- All Known Implementing Classes:
XMLDTDDescription,XMLEntityDescriptionImpl,XMLResourceIdentifierImpl,XSDDescription
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$
- Author:
- Neil Graham, IBM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBaseSystemId()Returns the base URI against which the literal SystemId is to be resolved.StringgetExpandedSystemId()Returns the expanded system identifier.StringgetLiteralSystemId()Returns the literal system identifier.StringgetNamespace()Returns the namespace of the resource.StringgetPublicId()Returns the public identifier.voidsetBaseSystemId(String systemId)Sets the base URI against which the literal SystemId is to be resolved.voidsetExpandedSystemId(String systemId)Sets the expanded system identifier.voidsetLiteralSystemId(String systemId)Sets the literal system identifier.voidsetNamespace(String namespace)Sets the namespace of the resource.voidsetPublicId(String publicId)Sets the public identifier.
-
-
-
Method Detail
-
setPublicId
void setPublicId(String publicId)
Sets the public identifier.
-
getPublicId
String getPublicId()
Returns the public identifier.
-
setExpandedSystemId
void setExpandedSystemId(String systemId)
Sets the expanded system identifier.
-
getExpandedSystemId
String getExpandedSystemId()
Returns the expanded system identifier.
-
setLiteralSystemId
void setLiteralSystemId(String systemId)
Sets the literal system identifier.
-
getLiteralSystemId
String getLiteralSystemId()
Returns the literal system identifier.
-
setBaseSystemId
void setBaseSystemId(String systemId)
Sets the base URI against which the literal SystemId is to be resolved.
-
getBaseSystemId
String getBaseSystemId()
Returns the base URI against which the literal SystemId is to be resolved.
-
setNamespace
void setNamespace(String namespace)
Sets the namespace of the resource.
-
getNamespace
String getNamespace()
Returns the namespace of the resource.
-
-