Package pyx12 :: Module error_visitor
[hide private]

Source Code for Module pyx12.error_visitor

 1  ###################################################################### 
 2  # Copyright (c) 2001-2005 Kalamazoo Community Mental Health Services, 
 3  #   John Holland <jholland@kazoocmh.org> <john@zoner.org> 
 4  # All rights reserved. 
 5  # 
 6  # This software is licensed as described in the file LICENSE.txt, which 
 7  # you should have received as part of this distribution. 
 8  # 
 9  ###################################################################### 
10   
11  #    $Id: error_visitor.py 961 2007-03-23 21:35:20Z johnholland $ 
12   
13  """ 
14  Visitor - Visits an error_handler composite 
15  """ 
16   
17 -class error_visitor(object):
18 """ 19 """ 20
21 - def __init__(self, fd):
22 """ 23 Params: fd - target file 24 """ 25 pass
26
27 - def visit_root_pre(self, errh):
28 """ 29 @param errh: Error handler 30 @type errh: L{error_handler.err_handler} 31 """ 32 pass
33
34 - def visit_root_post(self, errh):
35 """ 36 @param errh: Error handler 37 @type errh: L{error_handler.err_handler} 38 """ 39 pass
40
41 - def visit_isa_pre(self, err_isa):
42 pass
43
44 - def visit_isa_post(self, err_isa):
45 """ 46 Params: err_isa - error_isa instance 47 """ 48 pass
49
50 - def visit_gs_pre(self, err_gs):
51 pass
52
53 - def visit_gs_post(self, err_gs):
54 """ 55 Params: err_gs - error_gs instance 56 """ 57 pass
58
59 - def visit_st_pre(self, err_st):
60 pass
61
62 - def visit_st_post(self, err_st):
63 """ 64 Params: err_st - error_st instance 65 """ 66 pass
67
68 - def visit_seg(self, err_seg):
69 """ 70 Params: err_seg - error_seg instance 71 """ 72 pass
73
74 - def visit_ele(self, err_ele):
75 """ 76 Params: err_ele - error_ele instance 77 """ 78 pass
79