import java.awt.*; import java.awt.event.*; import javax.swing.*; public class BoilerPlate { public static void main(String[] args) { try { UIManager.setLookAndFeel( UIManager.getCrossPlatformLookAndFeelClassName()); } catch (Exception e) { System.exit(1); } JFrame vindu = new JFrame("Xxx"); vindu.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel jPanel = new JPanel(); JLabel tekst = new JLabel("Heiii"); jPanel.add(tekst); vindu.add(jPanel); vindu.pack(); vindu.setLocationRelativeTo(null); vindu.setVisible(true); } }