public final class VerilogDelay
extends java.lang.Object
VerilogDelay
represents the abstract syntax of the delay.Constructor and Description |
---|
VerilogDelay()
Creates an empty delay object.
|
VerilogDelay(VerilogDelay other)
Creates a copy of the delay object.
|
Modifier and Type | Method and Description |
---|---|
void |
addDelay(VerilogMinTypMax delay)
Adds a delay value to the list.
|
VerilogDelay |
clone() |
java.util.List<VerilogMinTypMax> |
getDelays()
Returns the list of expressions representing delay values.
|
boolean |
isSpecified()
Checks whether the delay is specified (i.e.
|
java.lang.String |
toString() |
public VerilogDelay()
public VerilogDelay(VerilogDelay other)
other
- the delay object to be copied.public boolean isSpecified()
true
iff the delay is specified.public java.util.List<VerilogMinTypMax> getDelays()
public void addDelay(VerilogMinTypMax delay)
delay
- the delay value to be added.public java.lang.String toString()
toString
in class java.lang.Object
public VerilogDelay clone()
clone
in class java.lang.Object