mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
33 lines
874 B
Plaintext
33 lines
874 B
Plaintext
import processing.core.*;
|
|
import processing.data.*;
|
|
import processing.event.*;
|
|
import processing.opengl.*;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.ArrayList;
|
|
import java.io.File;
|
|
import java.io.BufferedReader;
|
|
import java.io.PrintWriter;
|
|
import java.io.InputStream;
|
|
import java.io.OutputStream;
|
|
import java.io.IOException;
|
|
|
|
public class bug1515 extends PApplet {
|
|
|
|
// a class definition that does something with things that extend PApplet
|
|
class Heythere<T extends PApplet>{
|
|
}
|
|
|
|
// method definition which can do things with papplet
|
|
public <T extends PApplet> void doSomething( T thing ){
|
|
}
|
|
static public void main(String[] passedArgs) {
|
|
String[] appletArgs = new String[] { "bug1515" };
|
|
if (passedArgs != null) {
|
|
PApplet.main(concat(appletArgs, passedArgs));
|
|
} else {
|
|
PApplet.main(appletArgs);
|
|
}
|
|
}
|
|
}
|