Esempio n. 1
0
	def __init__(self, cellId, data=None, cons=None, props=None):
		msg = (data and data[0]) or ""
		TextCell.__init__(self, cellId, msg, cons, props, editable=False)
		self._data = data
		self.execute = None
Esempio n. 2
0
 def __init__(self, cellId, data=None, cons=None, props=None):
     msg = (data and data[0]) or ""
     TextCell.__init__(self, cellId, msg, cons, props, editable=False)
     self._data = data
     self.execute = None
Esempio n. 3
0
	def __init__(self, typeName, cid, data, cons=None, props=None):
		msg = "\'" + typeName + "\'" + " has not be registered with the type system."
		TextCell.__init__(self, cid, msg, cons, props, editable=False)
		self.typeName = typeName
		self._data = data
Esempio n. 4
0
 def __init__(self, typeName, cid, data, cons=None, props=None):
     msg = "\'" + typeName + "\'" + " has not be registered with the type system."
     TextCell.__init__(self, cid, msg, cons, props, editable=False)
     self.typeName = typeName
     self._data = data