Content Pipeline Guide > Java Reference > Interfaces > SAXInterfaceRecipient
  
SAXInterfaceRecipient
SAXInterfaceRecipient is a complimentary interface to SAXInterfaceProvider. This interface allows you to set interfaces.
public interface SAXInterfaceRecipient {
/**
* Set the ContentHandler.
* @param ch is the ContentHandler to be set
*/
void setContentHandler(ContentHandler ch);
/**
* Set the DTDHandler.
* @param dh is the DTDHandler to be set.
*/
void setDTDHandler(DTDHandler dh);
/**
* Set the ErrorHandler
* @param eh is the ErrorHandler to be set.
*/
void setErrorHandler(ErrorHandler eh);
/**
* Set the EntityResolver.
* @param er is the EntityResolver to be set.
*/
void setEntityResolver(EntityResolver er);
/**
* Sets the LexicalHandler.
* @param lh is the LexicalHandler to be set.
*/
void setLexicalHandler(LexicalHandler lh);
/**
* Sets the DeclHandler.
* @param dh is the DeclHandler to be set.
*/
void setDeclHandler(DeclHandler dh);
/**
* Sets the EntityResolver2.
* @param er2 is the EntityResolver2 to be set.
*/
void setEntityResolver2(EntityResolver2 er2);
}