X collapse pdeengine/pderunner/kjcengine

X   remove 'extends' from kjcengine, make an instance of Main
X     may need to subclass at.dms.kjc.Main to override the exit()
X   make pdeengine a class
X   remove pderunner, collapse into pdeengine
This commit is contained in:
benfry
2002-07-27 23:28:59 +00:00
parent 3cad1bf929
commit 98f35ea78d
6 changed files with 116 additions and 227 deletions

View File

@@ -1,5 +1,21 @@
public interface PdeEngine {
public void start() throws PdeException;
public void stop();
public void close();
public class PdeEngine {
PdeEditor editor;
public PdeEngine(PdeEditor editor) {
this.editor = editor;
}
// implemented by subclasses
public void start() throws PdeException {
}
public void front() {
}
public void stop() {
}
public void close() {
}
}