import javax.swing.*;

/**
 * @author Remi Forax
 */
public class MorphSwing1 {

  public static void main(String[] args) {
    JButton button=new JButton("Ok");
    
    JFrame frame=new JFrame("MorphSwing1");
    frame.setContentPane(button);
    frame.setSize(400,300);
    frame.show();
  }
}
