1 33 34 package edu.rice.cs.drjava.ui; 35 36 import javax.swing.*; 37 import java.awt.event.*; 38 import java.awt.*; 39 40 45 public class CommonCloseButton extends JButton { 46 47 public CommonCloseButton() { 48 super(MainFrame.getIcon("CloseX10.gif")); 49 setMargin(new Insets(0,0,0,0)); 50 } 51 52 public CommonCloseButton(ActionListener l) { 53 this(); 54 addActionListener(l); 55 } 56 } 57 | Popular Tags |