def __init__(self, name, experiment, string=None):
        """See item."""

        coroutines.__init__(self, name, experiment, string)
        # We don't call the sequence constructor, because it doesn't specify
        # the plugin_file to qtplugin, which we need to do.
        sequence_runtime.__init__(self, name, experiment, string)
        qtplugin.__init__(self, plugin_file=os.path.dirname(__file__))
        self.last_removed_child = None, None
Beispiel #2
0
	def __init__(self, name, experiment, string=None):

		"""See item."""

		coroutines.__init__(self, name, experiment, string)
		# We don't call the sequence constructor, because it doesn't specify
		# the plugin_file to qtplugin, which we need to do.
		sequence_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self, plugin_file=os.path.dirname(__file__))
		self.last_removed_child = None, None
Beispiel #3
0
    def __init__(self, name, experiment, string=None):
        """
		desc:
			Constructor.

		arguments:
			name:		The item name.
			experiment:	The experiment object.

		keywords:
			string:		A definition string.
		"""

        sequence_runtime.__init__(self, name, experiment, string)
        qtplugin.__init__(self)
        self.last_removed_child = None, None
Beispiel #4
0
	def __init__(self, name, experiment, string=None):

		"""
		desc:
			Constructor.

		arguments:
			name:		The item name.
			experiment:	The experiment object.

		keywords:
			string:		A definition string.
		"""

		sequence_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self)
		self.last_removed_child = None, None