mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 13:21:07 +01:00
Initial revision
This commit is contained in:
13
processing/app/PdeEnvironment.java
Normal file
13
processing/app/PdeEnvironment.java
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user