示例#1
0
    def __init__(self, name, experiment, string=None):
        """See qtitem."""

        self.lock_cycles = False
        loop_runtime.__init__(self, name, experiment, string)
        qtstructure_item.__init__(self)
        qtitem.__init__(self)
示例#2
0
    def __init__(self, name, experiment, string=None):

        """See qtitem."""

        self.lock_cycles = False
        loop_runtime.__init__(self, name, experiment, string)
        qtstructure_item.__init__(self)
        qtitem.__init__(self)
示例#3
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. We therefore
        # explicitly need to call the qtplugin and qtstructure_item
        # constructors.
        sequence_runtime.__init__(self, name, experiment, string)
        qtstructure_item.__init__(self)
        qtplugin.__init__(self, plugin_file=os.path.dirname(__file__))
        self.last_removed_child = None, None
示例#4
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. We therefore
		# explicitly need to call the qtplugin and qtstructure_item
		# constructors.
		sequence_runtime.__init__(self, name, experiment, string)
		qtstructure_item.__init__(self)
		qtplugin.__init__(self, plugin_file=os.path.dirname(__file__))
		self.last_removed_child = None, None
示例#5
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)
        qtstructure_item.__init__(self)
        qtplugin.__init__(self)
        self.last_removed_child = None, None
示例#6
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)
		qtstructure_item.__init__(self)
		qtplugin.__init__(self)
		self.last_removed_child = None, None