import java.awt.*; import javax.swing.*; import javax.swing.border.*; public class PildiNupp{ public static void main(String argumendid[]) throws Exception{ JButton nupp=new JButton("OK", new ImageIcon("karu.gif")); Icon maja=new ImageIcon("maja.gif"); nupp.setPressedIcon(maja); nupp.setContentAreaFilled(false); nupp.setMargin(new Insets(10, 10, 10, 10)); nupp.setToolTipText("Karu nupp"); nupp.setBorder(new LineBorder(Color.red, 8)); JFrame f=new JFrame("Nupuraam"); f.getContentPane().add(nupp); f.pack(); f.setVisible(true); Thread.sleep(10000); nupp.doClick(1000); nupp.setBorderPainted(false); } }