import xmlproc
class WFCDTD(DTDConsumer) def __init__(self,parser,err) string __module__ = 'xmlproc' def external_entity(self,ent_name,sys_id,pub_id,ndata) def external_pe(self,name,sysid,pubid) def fatal(self,msg) def general_entity(self,name,val) def parameter_entity(self,name,val) def resolve_ent_ref(self,name) def resolve_pe(self,name) def set_error_handler(self,err) # Methods inherited by WFCDTD from DTDConsumer def attribute(self,elem,attr,a_type,a_def) def comment(self,contents) def element_type(self,elem_name,elem_cont) def notation(self,name,sysid,pubid) def warning(self,msg)
Receives the declaration of a new attribute.
Receives comment contents.
Receives the declaration of an element type.
Handles a fatal error message.
Receives notation declarations.
Resolve the general entity name and return associated info.
Resolve the parameter reference name and return associated info.
Handles a non-fatal warning message.