Changeset 4331
- Timestamp:
- 07/11/07 17:26:19 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
experimental/components/GraphPy/branches/0.6.1/GraphPy/GraphPy.py
r4330 r4331 43 43 #------------------------------------------------------------- 44 44 class GraphPy_i(CF__POA.Resource): 45 def __init__(self, app_ref,uuid, label, poa):45 def __init__(self, uuid, label, poa): 46 46 CF._objref_Resource.__init__(self._this()) 47 47 print "GraphPy_i __init__: " + label 48 48 self.naming_service_name = label 49 49 self.poa = poa 50 self.app_ref 50 self.app_ref = app 51 51 self.inPort0_servant = dataIn_complexShort_i(self, "GraphDataIn") 52 52 self.inPort0_var = self.inPort0_servant._this() … … 130 130 131 131 # create the main component object 132 self.GraphPy_Obj = GraphPy_i( self.app,uuid, label, obj_poa)132 self.GraphPy_Obj = GraphPy_i(uuid, label, obj_poa) 133 133 GraphPy_var = self.GraphPy_Obj._this() 134 134