Public Methods | |
WorkList () | |
void | clear () |
void | doWork () |
void | insert (FGWork work) |
boolean | isEmpty () |
Iterator | iterator () |
FGWork | remove () |
Private Attributes | |
LinkedList | list = null |
Definition at line 52 of file WorkList.java.
|
Constructor of the class. Definition at line 62 of file WorkList.java. |
|
Empty the work list. Any existing work piece are lost. Definition at line 70 of file WorkList.java. Referenced by FA::reset().
|
|
Executes the work in the work list. Definition at line 76 of file WorkList.java. Referenced by FA::run().
|
|
Inserts new work into the list.
Definition at line 90 of file WorkList.java. |
|
Tells whether the work list is empty.
Definition at line 99 of file WorkList.java. |
|
Provides an iterator for the list.
Definition at line 108 of file WorkList.java. |
|
Provides the current work in the list.
Definition at line 117 of file WorkList.java. |
|
List of work. Definition at line 57 of file WorkList.java. |