Initial revision

This commit is contained in:
benfry
2001-07-26 17:09:40 +00:00
parent 7bdf3e0ea7
commit 15f4908cb6
13 changed files with 2350 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
public interface PdeEnvironment {
// stop the currently running thread (called by gui and others)
public void terminate();
// error being reported to gui (called by dbn)
public void error(PdeException e);
// successful finish reported to gui (called by dbn)
public void finished();
// message to write to gui (called by dbn)
public void message(String msg);
}