org.apache.xerces.dom3.as
Interface ASEntityDeclaration

All Superinterfaces:
ASObject

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.

public interface ASEntityDeclaration
extends ASObject


Field Summary
static short EXTERNAL_ENTITY
          Deprecated. constant defining an external entity.
static short INTERNAL_ENTITY
          Deprecated. constant defining an internal entity.
 
Fields inherited from interface org.apache.xerces.dom3.as.ASObject
AS_ATTRIBUTE_DECLARATION, AS_CONTENTMODEL, AS_ELEMENT_DECLARATION, AS_ENTITY_DECLARATION, AS_MODEL, AS_NOTATION_DECLARATION
 
Method Summary
 short getEntityType()
          Deprecated. The type of the entity as defined above.
 java.lang.String getEntityValue()
          Deprecated. The replacement text for the internal entity.
 java.lang.String getPublicId()
          Deprecated. The string representing the public identifier for this notation declaration, if present; null otherwise.
 java.lang.String getSystemId()
          Deprecated. the URI reference representing the system identifier for the notation declaration, if present, null otherwise.
 void setEntityType(short entityType)
          Deprecated. The type of the entity as defined above.
 void setEntityValue(java.lang.String entityValue)
          Deprecated. The replacement text for the internal entity.
 void setPublicId(java.lang.String publicId)
          Deprecated. The string representing the public identifier for this notation declaration, if present; null otherwise.
 void setSystemId(java.lang.String systemId)
          Deprecated. the URI reference representing the system identifier for the notation declaration, if present, null otherwise.
 
Methods inherited from interface org.apache.xerces.dom3.as.ASObject
cloneASObject, getAsNodeType, getLocalName, getNamespaceURI, getNodeName, getOwnerASModel, getPrefix, setLocalName, setNamespaceURI, setNodeName, setOwnerASModel, setPrefix
 

Field Detail

INTERNAL_ENTITY

static final short INTERNAL_ENTITY
Deprecated. 
constant defining an internal entity.

See Also:
Constant Field Values

EXTERNAL_ENTITY

static final short EXTERNAL_ENTITY
Deprecated. 
constant defining an external entity.

See Also:
Constant Field Values
Method Detail

getEntityType

short getEntityType()
Deprecated. 
The type of the entity as defined above.


setEntityType

void setEntityType(short entityType)
Deprecated. 
The type of the entity as defined above.


getEntityValue

java.lang.String getEntityValue()
Deprecated. 
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.


setEntityValue

void setEntityValue(java.lang.String entityValue)
Deprecated. 
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.


getSystemId

java.lang.String getSystemId()
Deprecated. 
the URI reference representing the system identifier for the notation declaration, if present, null otherwise.


setSystemId

void setSystemId(java.lang.String systemId)
Deprecated. 
the URI reference representing the system identifier for the notation declaration, if present, null otherwise.


getPublicId

java.lang.String getPublicId()
Deprecated. 
The string representing the public identifier for this notation declaration, if present; null otherwise.


setPublicId

void setPublicId(java.lang.String publicId)
Deprecated. 
The string representing the public identifier for this notation declaration, if present; null otherwise.