import java.awt.*; import java.applet.*; public class Buttons extends Applet { Button b1 = makeButton("I'm first", 18, Color.yellow); Button b2 = makeButton("I'm next", 8, Color.green); Button b3 = makeButton("I'm last", 36, Color.red); public void init() { add(b1); add(b2); add(b3); } public Button makeButton(String text, int fontSize, Color bColor) { Font f = new Font("SansSerif", Font.BOLD, fontSize); Button b = new Button(text); b.setForeground(bColor); b.setFont(f); return b; } }