MyCanvas: Constructor
public MyCanvas(Button red, Button green,
TextField shapeSpec) {
super();
this.shapeSpec = shapeSpec;
this.red = red;
this.green = green;
red.addActionListener(this);
green.addActionListener(this);
currentColor = new Color(255,0,0);
setBackground(Color.black);
setSize(100,100);
}
Previous slide
Next slide
Back to first slide
View graphic version