Interface ParameterStep

  • All Superinterfaces:
    IdentifiableRemote, java.rmi.Remote, Step, TptRemote

    public interface ParameterStep
    extends Step
    This Step is a steps which provides the possibility to change the value of a parameter during the test execution.
    • Method Detail

      • getParameter

        java.lang.String getParameter()
                               throws java.rmi.RemoteException
        Returns:
        the parameter of this step.
        Throws:
        java.rmi.RemoteException - remote communication problem
      • setParameter

        void setParameter​(java.lang.String parameter)
                   throws java.rmi.RemoteException
        Determines the parameter of this step.
        Parameters:
        parameter - parameter to assign
        Throws:
        java.rmi.RemoteException - remote communication problem
      • getDefinition

        java.lang.String getDefinition()
                                throws java.rmi.RemoteException
        Returns:
        the definition of this step.
        Throws:
        java.rmi.RemoteException - remote communication problem
      • setDefinition

        void setDefinition​(java.lang.String definition)
                    throws java.rmi.RemoteException
        Determines the definition of this step.
        Parameters:
        definition - expression to use as parameter definition
        Throws:
        java.rmi.RemoteException - remote communication problem
      • isAlways

        boolean isAlways()
                  throws java.rmi.RemoteException
        Returns:
        true if this step should run "always".
        Throws:
        java.rmi.RemoteException - remote communication problem
      • setAlways

        void setAlways​(boolean value)
                throws java.rmi.RemoteException
        Determines if this step should run "always".
        Parameters:
        value - true if always semantics should be used
        Throws:
        java.rmi.RemoteException - remote communication problem