Contents | Package | Class | Tree | Deprecated | Index | Help XML for Java 1.0.4
PREV | NEXT SHOW LISTS | HIDE LISTS

Interface com.ibm.xml.parser.ReferenceHandler


public interface ReferenceHandler
An interface for receiving control when a General Reference is recognized by the XML4J parser. This interface is useful to applications which are sensitive to the existence of General References and want to receive control prior to and after the XML4J parser expands the General Reference in favor of its children in the document object tree.

Refer to GeneralReference for details.

Version:
Revision: 22 1.3 src/com/ibm/xml/parser/ReferenceHandler.java, xml4jsrc, xml4j-jtcsv, xml4j_1_0_4
See Also:
GeneralReference

Method Summary
void  endReference(java.lang.String entityName)
Interface to be implemented for receiving control after all entity streams for a General Reference have been parsed.
void  startReference(java.lang.String entityName)
Interface to be implemented for receiving control when a General Reference is recognized by the XML4J parser.
 

Method Detail

startReference

public void startReference(java.lang.String entityName)
Interface to be implemented for receiving control when a General Reference is recognized by the XML4J parser. Control is received prior to parsing any entity streams.
Parameters:
entityName - The name of the entity being referred to by the General Reference.
See Also:
endReference, GeneralReference

endReference

public void endReference(java.lang.String entityName)
Interface to be implemented for receiving control after all entity streams for a General Reference have been parsed.
Parameters:
entityName - The name of the entity being referred to by the General Reference.
See Also:
startReference, GeneralReference

Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS