All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.jclark.xml.parse.Entity

public interface Entity
Information about an entity or notation.

See Also:
getEntity

Method Index

 o getBase()
Returns the URL that should be used for resolving the system identifier if the system identifier is relative.
 o getNotationName()
Returns the notation name of the entity, of null if this is not an unparsed entity.
 o getPublicId()
Returns the public identifier, or null if no public identifier was specified.
 o getReplacementText()
Returns the replacement text or null if this is not an internal entity.
 o getSystemId()
Returns the system identifier, or null if no system identifier was specified.

Methods

 o getSystemId
 public abstract String getSystemId()
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:
getBase
 o getBase
 public abstract URL getBase()
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.

 o getPublicId
 public abstract String getPublicId()
Returns the public identifier, or null if no public identifier was specified.

 o getReplacementText
 public abstract String getReplacementText()
Returns the replacement text or null if this is not an internal entity.

 o getNotationName
 public abstract String getNotationName()
Returns the notation name of the entity, of null if this is not an unparsed entity.


All Packages  Class Hierarchy  This Package  Previous  Next  Index