org.apache.xerces.impl.validation
Interface EntityState
- DTDGrammar
public interface EntityState
The entity state interface defines methods that must be implemented
by components that store information about entity declarations, as well as by
entity validator that will need to validate attributes of type entity.
$Id: EntityState.java 320091 2004-10-04 22:07:41Z mrglavas $ boolean | isEntityDeclared(String name) - Query method to check if entity with this name was declared.
|
boolean | isEntityUnparsed(String name) - Query method to check if entity is unparsed.
|
isEntityDeclared
public boolean isEntityDeclared(String name)
Query method to check if entity with this name was declared.
- true if name is a declared entity
isEntityUnparsed
public boolean isEntityUnparsed(String name)
Query method to check if entity is unparsed.
- true if name is an unparsed entity
Copyright B) 1999-2006 The Apache Software Foundation. All Rights Reserved.