public final class VerilogRepeatEvents
extends java.lang.Object
VerilogRepeatEvents
represents repeat-event constructs.Constructor and Description |
---|
VerilogRepeatEvents()
Creates a repeat-event construct.
|
VerilogRepeatEvents(VerilogRepeatEvents other)
Creates a copy of the repeat-event construct.
|
Modifier and Type | Method and Description |
---|---|
VerilogRepeatEvents |
clone() |
java.util.List<VerilogEvent> |
getEvents()
Returns the list of events to be repeated.
|
VerilogExpression |
getExpression()
Returns the repeat count expression.
|
void |
setEvents(java.util.List<VerilogEvent> events)
Sets a list of events to be repeated.
|
void |
setExpression(VerilogExpression expression)
Sets a repeat count expression.
|
java.lang.String |
toString() |
public VerilogRepeatEvents()
public VerilogRepeatEvents(VerilogRepeatEvents other)
other
- the repeat-event construct to be copied.public VerilogExpression getExpression()
public void setExpression(VerilogExpression expression)
expression
- the expression to be set.public java.util.List<VerilogEvent> getEvents()
public void setEvents(java.util.List<VerilogEvent> events)
events
- the list to be set.public java.lang.String toString()
toString
in class java.lang.Object
public VerilogRepeatEvents clone()
clone
in class java.lang.Object