Rawbutton: CircleButton.java

import java.awt.*;
import java.awt.geom.*;

/**
 * Like Rawbutton, but circular
 */
public class CircleButton extends Rawbutton {
    public CircleButton (String label, int x, int y) {
	super (label, x, y);

	loc = new Ellipse2D.Double (x, y, 50, 50); //*1 Clobber the one that Rawbutton provided us
    }
}
[download file]