@param ps <code>PrintStream</code> on which to print
*/
public void dump(java.io.PrintStream ps) {
ps.println("FIFO:");
for (int i = 0; i < list.size(); i++) {
WaitResultTest wr = get(i);
ps.print("t=" + wr.returnTime() + " ");
if (wr.getEntity() == null) {
ps.print("'null LP'");
}
else {
ps.print("'" + wr.getEntity().getName() + "'");
}
ps.println(" actionOcc:" + wr.wasActivated() +
" action:" + wr.getReturnToken() +
" comment: " + wr.getComment());
}
}