Class SvaSequenceMatchAction


  • public final class SvaSequenceMatchAction
    extends java.lang.Object
    SvaSequenceMatchAction represents the action performed on a sequence match.
    • Constructor Summary

      Constructors 
      Constructor Description
      SvaSequenceMatchAction()
      Creates a new sequence match action.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      SvaSequenceMatchAction clone()  
      java.lang.Object getAction()
      Returns the match action.
      boolean isAssignment()
      Shows whether the action is an assignment.
      boolean isCall()
      Shows whether the action is a method call.
      void setAction​(java.lang.Object action)
      Sets the match action.
      • Methods inherited from class java.lang.Object

        equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SvaSequenceMatchAction

        public SvaSequenceMatchAction()
        Creates a new sequence match action.
    • Method Detail

      • isCall

        public boolean isCall()
        Shows whether the action is a method call.
        Returns:
        true if the action is a call, false otherwise.
      • isAssignment

        public boolean isAssignment()
        Shows whether the action is an assignment.
        Returns:
        true if the action is an assignment, false otherwise.
      • setAction

        public void setAction​(java.lang.Object action)
        Sets the match action.
        Parameters:
        action - - the specified action.
      • getAction

        public java.lang.Object getAction()
        Returns the match action.
        Returns:
        the match action.