public interface

ASEntityDeclaration

implements ASObject
org.apache.xerces.dom3.as.ASEntityDeclaration

This interface is deprecated.
Models a general entity declaration in an abstract schema. The abstract schema does not handle any parameter entity. It is assumed that the parameter entities are expanded by the implementation as the abstract schema is built.

See also the Document Object Model (DOM) Level 3 Abstract Schemas and Load and Save Specification.

Summary

Constants
short EXTERNAL_ENTITY constant defining an external entity.
short INTERNAL_ENTITY constant defining an internal entity.
[Expand]
Inherited Constants
From interface org.apache.xerces.dom3.as.ASObject
Public Methods
abstract short getEntityType()
The type of the entity as defined above.
abstract String getEntityValue()
The replacement text for the internal entity.
abstract String getPublicId()
The string representing the public identifier for this notation declaration, if present; null otherwise.
abstract String getSystemId()
the URI reference representing the system identifier for the notation declaration, if present, null otherwise.
abstract void setEntityType(short entityType)
The type of the entity as defined above.
abstract void setEntityValue(String entityValue)
The replacement text for the internal entity.
abstract void setPublicId(String publicId)
The string representing the public identifier for this notation declaration, if present; null otherwise.
abstract void setSystemId(String systemId)
the URI reference representing the system identifier for the notation declaration, if present, null otherwise.
[Expand]
Inherited Methods
From interface org.apache.xerces.dom3.as.ASObject

Constants

public static final short EXTERNAL_ENTITY

constant defining an external entity.

Constant Value: 2 (0x00000002)

public static final short INTERNAL_ENTITY

constant defining an internal entity.

Constant Value: 1 (0x00000001)

Public Methods

public abstract short getEntityType ()

The type of the entity as defined above.

public abstract String getEntityValue ()

The replacement text for the internal entity. The entity references within the replacement text are kept intact. For an entity of type EXTERNAL_ENTITY, this is null.

public abstract String getPublicId ()

The string representing the public identifier for this notation declaration, if present; null otherwise.

public abstract String getSystemId ()

the URI reference representing the system identifier for the notation declaration, if present, null otherwise.

public abstract void setEntityType (short entityType)

The type of the entity as defined above.

public abstract void setEntityValue (String entityValue)

The replacement text for the internal entity. The entity references within the replacement text are kept intact. For an entity of type EXTERNAL_ENTITY, this is null.

public abstract void setPublicId (String publicId)

The string representing the public identifier for this notation declaration, if present; null otherwise.

public abstract void setSystemId (String systemId)

the URI reference representing the system identifier for the notation declaration, if present, null otherwise.