| com.jclark.xml.parse.Entity
Entity | public interface Entity (Code) | | Information about an entity or notation.
See Also: DTD.getEntity version: $Revision: 1.1 $ $Date: 1998/06/25 04:41:53 $ |
Method Summary | |
URL | getBase() Returns the URL that should be used for resolving the system identifier
if the system identifier is relative. | String | getNotationName() Returns the notation name of the entity, of null if this is
not an unparsed entity. | String | getPublicId() Returns the public identifier, or null if no public identifier
was specified. | String | getReplacementText() Returns the replacement text or null if this is not an internal
entity. | String | getSystemId() Returns the system identifier, or null if no system identifier
was specified. |
getBase | URL getBase()(Code) | | Returns the URL that should be used for resolving the system identifier
if the system identifier is relative.
Returns null if no URL is available.
|
getNotationName | String getNotationName()(Code) | | Returns the notation name of the entity, of null if this is
not an unparsed entity.
|
getPublicId | String getPublicId()(Code) | | Returns the public identifier, or null if no public identifier
was specified.
|
getReplacementText | String getReplacementText()(Code) | | Returns the replacement text or null if this is not an internal
entity.
|
getSystemId | String getSystemId()(Code) | | Returns the system identifier, or null if no system identifier
was specified.
A relative URL is not automatically resolved into an absolute URL;
getBase can be used to do this.
See Also: Entity.getBase |
|
|