|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JSimLink | |
---|---|
cz.zcu.fav.kiv.jsim | This package provides basic classes for simulation creation and execution. |
Uses of JSimLink in cz.zcu.fav.kiv.jsim |
---|
Fields in cz.zcu.fav.kiv.jsim declared as JSimLink | |
---|---|
private JSimLink |
JSimHead.head
The first link in the queue. |
private JSimLink |
JSimLink.next
Reference to the next link in the queue. |
private JSimLink |
JSimLink.previous
Reference to the previous link in the queue. |
private JSimLink |
JSimHead.tail
The last link in the queue. |
Methods in cz.zcu.fav.kiv.jsim that return JSimLink | |
---|---|
JSimLink |
JSimHead.first()
Returns the first link in the queue. |
protected JSimLink |
JSimHead.getHead()
Returns the head of the queue. |
JSimLink |
JSimLink.getNext()
Returns the next link in the queue. |
JSimLink |
JSimLink.getPrevious()
Returns the previous link in the queue. |
protected JSimLink |
JSimHead.getTail()
Returns the tail of the queue. |
JSimLink |
JSimHead.last()
Returns the last link in the queue. |
Methods in cz.zcu.fav.kiv.jsim with parameters of type JSimLink | |
---|---|
void |
JSimLink.follow(JSimLink otherLink)
Inserts the link into a queue after another link. |
void |
JSimLink.precede(JSimLink otherLink)
Inserts the item into a queue before another item. |
protected void |
JSimHead.putAtHead(JSimLink newHead)
Adds a link to the head of the queue, doing necessary adjustments. |
protected void |
JSimHead.putAtTail(JSimLink newTail)
Sets a new tail of the queue, doing necessary adjustments. |
protected void |
JSimHead.setHead(JSimLink newHead)
Sets a new head of the queue. |
protected void |
JSimLink.setNext(JSimLink nextLink)
Sets the next item in the queue. |
protected void |
JSimLink.setPrevious(JSimLink previousLink)
Sets the previous link in the queue. |
protected void |
JSimHead.setTail(JSimLink newTail)
Sets a new tail of the queue. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |