Represents a declaration of a general entity; e.g.
<!ENTITY COPY01 "Copyright 2001 Elliotte Harold">
Java binding:
package org.w3c.dom.as;
public interface ASEntityDecl extends ASObject {
// EntityType
public static final short INTERNAL_ENTITY = 1;
public static final short EXTERNAL_ENTITY = 2;
public short getEntityType();
public void setEntityType(short entityType);
public String getEntityValue();
public void setEntityValue(String entityValue);
public String getSystemId();
public void setSystemId(String systemId);
public String getPublicId();
public void setPublicId(String publicId);
}
IDL:
interface ASEntityDecl : ASObject {
// EntityType
const unsigned short INTERNAL_ENTITY = 1;
const unsigned short EXTERNAL_ENTITY = 2;
attribute unsigned short entityType;
attribute DOMString entityValue;
attribute DOMString systemId;
attribute DOMString publicId;
};