Inheritance diagram for DebugObserver::
Public Methods | |
DebugObserver (java.io.PrintStream o) | |
void | start () |
void | seek () |
void | stop () |
void | prepareNewFrame (int frameNr) |
void | updateNewFrame (int frameNr) |
|
00039 { 00040 out = o; 00041 } |
|
Reimplemented from PlayingAdapter.
00044 { 00045 showThread(); 00046 out.println("Start"); 00047 } |
|
Reimplemented from PlayingAdapter.
00050 { 00051 showThread(); 00052 out.println("Step"); 00053 } |
|
Reimplemented from PlayingAdapter.
00056 { 00057 showThread(); 00058 out.println("Stop"); 00059 } |
|
Reimplemented from PlayingAdapter.
00062 { 00063 showThread(); 00064 out.println("Preparing "+frameNr); 00065 } |
|
Reimplemented from PlayingAdapter.
00068 { 00069 showThread(); 00070 out.println("Updating "+frameNr); 00071 } |