def __init__(self, id, title=None):
     """
     Init OSComponent
     """
     OSComponent.__init__(self, id, title)
     self.buildRelations()
 def __init__(self, id, title = None):
     """
     Init OSComponent
     """
     OSComponent.__init__(self, id, title)
     self.buildRelations()
예제 #3
0
 def __init__(self, id, title = None):
     # Init OSComponent
     OSComponent.__init__(self, id, title)
 def __init__(self, id):
     """
     Init the parent class
     """
     OSComponent.__init__(self, id)
예제 #5
0
 def __init__(self, id, title=None):
     # Init OSComponent
     OSComponent.__init__(self, id, title)
 def __init__(self, id, title=None):
     OSComponent.__init__(self, id, title)
     MEProduct.__init__(self, id, title)
     super(CustomComponent, self).__init__(id, title)