|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.ObjectCollectableNode
Stuff that all nodes and branches in the sound tree know.
Field Summary | |
CollectableNode |
next
The next branch/node/whatever to process |
Constructor Summary | |
CollectableNode()
Constructor for CollectableNode just sets next to null |
Method Summary | |
void |
add(CollectableNode node)
Add the input node after the last node in this list. |
abstract Sound |
collect()
Collect all the sounds from me on |
abstract Sound |
collectAfter()
Collect all the sounds from me on, but if there's processing, do it after. |
CollectableNode |
getNext()
|
void |
insertAfter(CollectableNode node)
Insert the input node after this node. |
CollectableNode |
last()
Return the last element in the list |
void |
playFromMeOn()
Play the list of sound elements after me |
void |
remove(CollectableNode node)
Method to remove node from list, fixing links appropriately. |
void |
setNext(CollectableNode nextOne)
Methods to set and get next elements |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public CollectableNode next
Constructor Detail |
public CollectableNode()
Method Detail |
public void setNext(CollectableNode nextOne)
nextOne
- next element in listpublic CollectableNode getNext()
public void playFromMeOn()
public abstract Sound collect()
public abstract Sound collectAfter()
public void remove(CollectableNode node)
node
- element to remove from list.public void insertAfter(CollectableNode node)
node
- element to insert after this.public CollectableNode last()
public void add(CollectableNode node)
node
- element to insert after this.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |