| java.lang.Object org.apache.xerces.util.XMLResourceIdentifierImpl
All known Subclasses: org.apache.xerces.impl.xs.XSDDescription, org.apache.xerces.impl.dtd.XMLDTDDescription, org.apache.xerces.util.XMLEntityDescriptionImpl,
XMLResourceIdentifierImpl | public class XMLResourceIdentifierImpl implements XMLResourceIdentifier(Code) | | The XMLResourceIdentifierImpl class is an implementation of the
XMLResourceIdentifier interface which defines the location identity
of a resource.
author: Andy Clark version: $Id: XMLResourceIdentifierImpl.java 447241 2006-09-18 05:12:57Z mrglavas $ |
fBaseSystemId | protected String fBaseSystemId(Code) | | The base system identifier.
|
fExpandedSystemId | protected String fExpandedSystemId(Code) | | The expanded system identifier.
|
fLiteralSystemId | protected String fLiteralSystemId(Code) | | The literal system identifier.
|
fNamespace | protected String fNamespace(Code) | | The namespace of the resource.
|
fPublicId | protected String fPublicId(Code) | | The public identifier.
|
XMLResourceIdentifierImpl | public XMLResourceIdentifierImpl()(Code) | | Constructs an empty resource identifier.
|
XMLResourceIdentifierImpl | public XMLResourceIdentifierImpl(String publicId, String literalSystemId, String baseSystemId, String expandedSystemId)(Code) | | Constructs a resource identifier.
Parameters: publicId - The public identifier. Parameters: literalSystemId - The literal system identifier. Parameters: baseSystemId - The base system identifier. Parameters: expandedSystemId - The expanded system identifier. |
XMLResourceIdentifierImpl | public XMLResourceIdentifierImpl(String publicId, String literalSystemId, String baseSystemId, String expandedSystemId, String namespace)(Code) | | Constructs a resource identifier.
Parameters: publicId - The public identifier. Parameters: literalSystemId - The literal system identifier. Parameters: baseSystemId - The base system identifier. Parameters: expandedSystemId - The expanded system identifier. Parameters: namespace - The namespace. |
clear | public void clear()(Code) | | Clears the values.
|
getBaseSystemId | public String getBaseSystemId()(Code) | | Returns the base URI against which the literal SystemId is to be resolved.
|
getExpandedSystemId | public String getExpandedSystemId()(Code) | | Returns the expanded system identifier.
|
getLiteralSystemId | public String getLiteralSystemId()(Code) | | Returns the literal system identifier.
|
getNamespace | public String getNamespace()(Code) | | Returns the namespace of the resource.
|
getPublicId | public String getPublicId()(Code) | | Returns the public identifier.
|
hashCode | public int hashCode()(Code) | | Returns a hash code for this object.
|
setBaseSystemId | public void setBaseSystemId(String baseSystemId)(Code) | | Sets the base system identifier.
|
setExpandedSystemId | public void setExpandedSystemId(String expandedSystemId)(Code) | | Sets the expanded system identifier.
|
setLiteralSystemId | public void setLiteralSystemId(String literalSystemId)(Code) | | Sets the literal system identifier.
|
setNamespace | public void setNamespace(String namespace)(Code) | | Sets the namespace of the resource.
|
setPublicId | public void setPublicId(String publicId)(Code) | | Sets the public identifier.
|
setValues | public void setValues(String publicId, String literalSystemId, String baseSystemId, String expandedSystemId)(Code) | | Sets the values of the resource identifier.
|
setValues | public void setValues(String publicId, String literalSystemId, String baseSystemId, String expandedSystemId, String namespace)(Code) | | Sets the values of the resource identifier.
|
toString | public String toString()(Code) | | Returns a string representation of this object.
|
|
|