org.apache.xerces.util
public class XMLResourceIdentifierImpl extends Object implements XMLResourceIdentifier
Version: $Id: XMLResourceIdentifierImpl.java,v 1.3 2004/02/24 23:15:53 mrglavas Exp $
| Field Summary | |
|---|---|
| protected String | fBaseSystemId The base system identifier. |
| protected String | fExpandedSystemId The expanded system identifier. |
| protected String | fLiteralSystemId The literal system identifier. |
| protected String | fNamespace The namespace of the resource. |
| protected String | fPublicId The public identifier. |
| Constructor Summary | |
|---|---|
| XMLResourceIdentifierImpl() Constructs an empty resource identifier. | |
| XMLResourceIdentifierImpl(String publicId, String literalSystemId, String baseSystemId, String expandedSystemId)
Constructs a resource identifier.
| |
| XMLResourceIdentifierImpl(String publicId, String literalSystemId, String baseSystemId, String expandedSystemId, String namespace)
Constructs a resource identifier.
| |
| Method Summary | |
|---|---|
| void | clear() Clears the values. |
| String | getBaseSystemId()
Returns the base URI against which the literal SystemId is to be resolved. |
| String | getExpandedSystemId() Returns the expanded system identifier. |
| String | getLiteralSystemId() Returns the literal system identifier. |
| String | getNamespace() Returns the namespace of the resource. |
| String | getPublicId() Returns the public identifier. |
| int | hashCode() Returns a hash code for this object. |
| void | setBaseSystemId(String baseSystemId) Sets the base system identifier. |
| void | setExpandedSystemId(String expandedSystemId) Sets the expanded system identifier. |
| void | setLiteralSystemId(String literalSystemId) Sets the literal system identifier. |
| void | setNamespace(String namespace) Sets the namespace of the resource. |
| void | setPublicId(String publicId) Sets the public identifier. |
| void | setValues(String publicId, String literalSystemId, String baseSystemId, String expandedSystemId) Sets the values of the resource identifier. |
| void | setValues(String publicId, String literalSystemId, String baseSystemId, String expandedSystemId, String namespace) Sets the values of the resource identifier. |
| String | toString() Returns a string representation of this object. |
Parameters: publicId The public identifier. literalSystemId The literal system identifier. baseSystemId The base system identifier. expandedSystemId The expanded system identifier.
Parameters: publicId The public identifier. literalSystemId The literal system identifier. baseSystemId The base system identifier. expandedSystemId The expanded system identifier. namespace The namespace.