Save This Page
Home » Xerces-J-src.2.9.1 » org.apache.xerces.dom3 » as » [javadoc | source]
org.apache.xerces.dom3.as
public interface: ASEntityDeclaration [javadoc | source]

All Implemented Interfaces:
    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.

Field Summary
public static final  short INTERNAL_ENTITY    constant defining an internal entity. 
public static final  short EXTERNAL_ENTITY    constant defining an external entity. 
Method from org.apache.xerces.dom3.as.ASEntityDeclaration Summary:
getEntityType,   getEntityValue,   getPublicId,   getSystemId,   setEntityType,   setEntityValue,   setPublicId,   setSystemId
Method from org.apache.xerces.dom3.as.ASEntityDeclaration Detail:
 public short getEntityType()       Deprecated!
    The type of the entity as defined above.
 public 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.
 public String getPublicId()       Deprecated!
    The string representing the public identifier for this notation declaration, if present; null otherwise.
 public String getSystemId()       Deprecated!
    the URI reference representing the system identifier for the notation declaration, if present, null otherwise.
 public  void setEntityType(short entityType)       Deprecated!
    The type of the entity as defined above.
 public  void setEntityValue(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.
 public  void setPublicId(String publicId)       Deprecated!
    The string representing the public identifier for this notation declaration, if present; null otherwise.
 public  void setSystemId(String systemId)       Deprecated!
    the URI reference representing the system identifier for the notation declaration, if present, null otherwise.