Package org.apache.xerces.xni
Interface XMLResourceIdentifier
- All Known Subinterfaces:
XMLDTDDescription,XMLGrammarDescription,XMLSchemaDescription
public interface XMLResourceIdentifier
This 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
Modifier and TypeMethodDescriptionReturns the base URI against which the literal SystemId is to be resolved.Returns the expanded system identifier.Returns the literal system identifier.Returns the namespace of the resource.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 Details
-
setPublicId
Sets the public identifier. -
getPublicId
String getPublicId()Returns the public identifier. -
setExpandedSystemId
Sets the expanded system identifier. -
getExpandedSystemId
String getExpandedSystemId()Returns the expanded system identifier. -
setLiteralSystemId
Sets the literal system identifier. -
getLiteralSystemId
String getLiteralSystemId()Returns the literal system identifier. -
setBaseSystemId
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
Sets the namespace of the resource. -
getNamespace
String getNamespace()Returns the namespace of the resource.
-