| org.ozoneDB.xml.dom.NodeImpl org.ozoneDB.xml.dom.ParamEntity
STATE_DECLARED | final public static short STATE_DECLARED(Code) | | Entity has been declared but not parsed. This is the initial state for
an entity after it has been declared in the DTD but before it is used
in the document contents.
|
STATE_NOT_FOUND | final public static short STATE_NOT_FOUND(Code) | | Entity not found. The entity could not be parsed before.
|
STATE_PARSED | final public static short STATE_PARSED(Code) | | Entity has been parsed. This state indicates that entity has been parsed
and it's parsed contents is contained in its child nodes.
|
STATE_PARSING | final public static short STATE_PARSING(Code) | | Entity is being parsed. This state designates that the entity is being
parsed right now. State is used to identify circular references.
|
serialVersionUID | final static long serialVersionUID(Code) | | |
ParamEntity | public ParamEntity(DocumentImpl owner, String name, String systemId, String publicId)(Code) | | Constructs an external parameter entity. Entity system identifier must be
provided, public identifier is optional.
Parameters: owner - The owner document Parameters: name - The entity name Parameters: systemId - The system identifier Parameters: publicId - The public identifier, if specified |
ParamEntity | public ParamEntity(DocumentImpl owner, String name, String internalValue)(Code) | | Constructs an internal parameter entity. Entity value must be provided.
Parameters: owner - The owner document Parameters: name - The entity name Parameters: internalValue - The unparsed entity value |
ParamEntity | public ParamEntity()(Code) | | |
cloneInto | public synchronized void cloneInto(NodeProxy into, boolean deep)(Code) | | |
cloneNode | final public Node cloneNode(boolean deep)(Code) | | |
equals | public synchronized boolean equals(Object other)(Code) | | |
getNodeType | public short getNodeType()(Code) | | |
getState | public short getState()(Code) | | Returns the parsing state of this entity.
State of entity |
isInternal | public boolean isInternal()(Code) | | Returns true if entity is an internal entity. An internal entity is one
for which a value has been defined. An external entity is one for which
an external entity has been assigned through either system or public
identifiers.
True if internal entity |
setInternal | final public void setInternal(String internalValue)(Code) | | |
setState | public void setState(short newState)(Code) | | Changes the parsing state of this entity. Note that only some changes
are allowed: from declared to parsing, parsed or not found; from parsing
to parsed or not found; from not found to declared.
Parameters: newState - New state of entity |
|
|