import javax.swing.JButton; import javax.swing.JFrame; /** * * @author ampopov */ public class LafTest { public static void main(String[] args) { JFrame f = new JFrame("fsdfsdf"); f.add(new JButton("fgb")); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.pack(); f.setVisible(true); } }