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