Interface ChannelStep

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

    public interface ChannelStep
    extends Step
    This Step is a step which provides the possibility to change the value of a channel during test execution.
    • Method Detail

      • getChannel

        java.lang.String getChannel()
                             throws java.rmi.RemoteException
        Returns:
        the channel of this step.
        Throws:
        java.rmi.RemoteException - remote communication problem
      • setChannel

        void setChannel​(java.lang.String channel)
                 throws java.rmi.RemoteException
        Determines the channel of this step.
        Parameters:
        channel - left-hand side channel name
        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 - right-hand side expression
        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 to use always semantics
        Throws:
        java.rmi.RemoteException - remote communication problem