예제 #1
0
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.cursor = StatementCursor(self.conn)
예제 #2
0
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.machine = MachineHandler(self.conn)
예제 #3
0
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.kernels = KernelsHandler(self.conn)
예제 #4
0
파일: family.py 프로젝트: joelsefus/paella
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.family = Family(self.conn)
예제 #5
0
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.family = Family(self.conn)
예제 #6
0
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.diskconfig = DiskConfigHandler(self.conn)
예제 #7
0
파일: machine.py 프로젝트: joelsefus/paella
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.kernels = KernelsHandler(self.conn)
예제 #8
0
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.profile = Profile(self.conn)
예제 #9
0
파일: machine.py 프로젝트: joelsefus/paella
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.diskconfig = DiskConfigHandler(self.conn)
예제 #10
0
파일: machine.py 프로젝트: joelsefus/paella
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.cursor = StatementCursor(self.conn)
예제 #11
0
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.trait = Trait(self.conn)
예제 #12
0
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.profile = Profile(self.conn)
예제 #13
0
 def __init__(self, app, **atts):
     BaseDocument.__init__(self, app, **atts)
     self.machine = MachineHandler(self.conn)