mirror of
https://github.com/processing/processing4.git
synced 2026-02-01 12:51:37 +01:00
14 lines
379 B
Java
14 lines
379 B
Java
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);
|
|
}
|