mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 21:29:17 +01:00
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
import processing.core.*;
|
|
import processing.data.*;
|
|
import processing.event.*;
|
|
import processing.opengl.*;
|
|
|
|
import java.io.Serializable;
|
|
|
|
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 annotations extends PApplet {
|
|
|
|
|
|
|
|
public void setup() {
|
|
size(200,200);
|
|
}
|
|
|
|
@Deprecated
|
|
public void banana() {
|
|
println("hey");
|
|
}
|
|
|
|
@SuppressWarnings({"serial", "rawtypes"})
|
|
class Banana implements Serializable {
|
|
|
|
}
|
|
|
|
@SuppressWarnings("serial")
|
|
class Apple implements Serializable {
|
|
|
|
}
|
|
|
|
@javax.annotation.Generated(value = {"com.mrfeinberg.ImmortalAroma"
|
|
},
|
|
comments="Shazam!",
|
|
date="2001-07-04T12:08:56.235-0700")
|
|
class Pear {}
|
|
static public void main(String[] passedArgs) {
|
|
String[] appletArgs = new String[] { "annotations" };
|
|
if (passedArgs != null) {
|
|
PApplet.main(concat(appletArgs, passedArgs));
|
|
} else {
|
|
PApplet.main(appletArgs);
|
|
}
|
|
}
|
|
}
|