Class SvaSequenceMatchAction
- java.lang.Object
-
- ru.ispras.verilog.parser.sva.basis.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.
-
-
-
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.
-
clone
public SvaSequenceMatchAction clone()
- Overrides:
clone
in classjava.lang.Object
-
-