mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 14:19:19 +01:00
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
22 lines
284 B
Java
22 lines
284 B
Java
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() {
|
|
}
|
|
}
|