http://www2.hawaii.edu/~dylank/ics111/
It is a Java file that you should save as EZ.java and import into your project package
import java.awt.Color;
import java.awt.Rectangle;
public class HelloWorld {
public static void main(String[] args) {
// Creates a window of size 200x200
EZ.initialize(200, 200);
// Creates a (filled) rectangle
// size 30x5, centered at 120, 100
EZRectangle r;
r = EZ.addRectangle(120,100,30,5,Color.BLACK,true);
// Creates text on the window centered at 100, 100
EZ.addText(100, 100, "Hello World", Color.BLACK);
}
}