예제 #1
0
    def __init__(self, service, name, arguments = []):
        """ Constructor for the Action class.

        @param service: service which holds this action
        @param name: action name
        @param arguments: arguments list

        @type service: Service
        @type name: string
        @type arguments: list of Argument
        """
        BaseAction.__init__(self, service, name, arguments)
예제 #2
0
    def __init__(self, service, name, arguments = []):
        """ Constructor for the Action class.

        @param service: service which holds this action
        @param name: action name
        @param arguments: arguments list

        @type service: Service
        @type name: string
        @type arguments: list of Argument
        """
        BaseAction.__init__(self, service, name, arguments)
예제 #3
0
 def __init__(self, service, name, arguments=[]):
     BaseAction.__init__(self, service, name, arguments)
     self.run_function = self.run
예제 #4
0
 def __init__(self, service, name, arguments = []):
     BaseAction.__init__(self, service, name, arguments)
     self.run_function = self.run