def __init__(self, name, assy, dad, members=(), editCommand=None):

        Group.__init__(self,
                       name,
                       assy,
                       dad,
                       members=members,
                       editCommand=editCommand)
        ###BUG: not all callers pass an editCommand. It would be better
        # to figure out on demand which editCommand would be appropriate.
        # [bruce 080227 comment]
        return
예제 #2
0
 def __init__(self, name, assy, dad, members = (), editCommand = None):
         
     Group.__init__(self, 
                    name, 
                    assy, 
                    dad, 
                    members = members, 
                    editCommand = editCommand)
     ###BUG: not all callers pass an editCommand. It would be better
     # to figure out on demand which editCommand would be appropriate.
     # [bruce 080227 comment]
     return
예제 #3
0
 def __init__(self, assy, name): # arg order is like Node, not like Group
     dad = None
     Group.__init__(self, name, assy, dad)