def __init__(self, id, title=None):
     """
     Init OSComponent
     """
     OSComponent.__init__(self, id, title)
     self.buildRelations()
Ejemplo n.º 2
0
 def __init__(self, id, title = None):
     """
     Init OSComponent
     """
     OSComponent.__init__(self, id, title)
     self.buildRelations()
Ejemplo n.º 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)
Ejemplo n.º 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)