예제 #1
0
파일: visitors.py 프로젝트: zinoff/ofexport
 def __init__(self, root_folder, root_context):
     Visitor.__init__(self)
     self.root_folder = root_folder
     self.root_context = root_context
     self.project = Project(name="Tasks")
     self.context = Context(name="Tasks")
예제 #2
0
파일: visitors.py 프로젝트: zinoff/ofexport
 def __init__(self, types):
     Visitor.__init__(self)
     self.types = types
예제 #3
0
파일: visitors.py 프로젝트: zinoff/ofexport
 def __init__(self, types, get_key_fn, nice_string):
     Visitor.__init__(self)
     self.types = types
     self.get_key_fn = get_key_fn
     self.nice_string = nice_string
예제 #4
0
 def __init__(self, root_folder, root_context):
     Visitor.__init__(self)
     self.root_folder = root_folder
     self.root_context = root_context
     self.project = Project (name='Tasks')
     self.context = Context (name='Tasks')
예제 #5
0
 def __init__(self, types):
     Visitor.__init__(self)
     self.types = types
예제 #6
0
 def __init__(self, types, get_key_fn, nice_string):
     Visitor.__init__(self)
     self.types = types
     self.get_key_fn = get_key_fn
     self.nice_string = nice_string