import javax.swing.*; import java.awt.*; public class SalutonFrame2 extends JFrame { public SalutonFrame2() { super(); setSize(350, 100); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); JLabel salutonLabel = new JLabel("Saluton mondo!"); FlowLayout flo = new FlowLayout(); Container pane = getContentPane(); pane.setLayout(flo); pane.add(salutonLabel); setContentPane(pane); } public static void main(String[] arguments) { SalutonFrame2 sal = new SalutonFrame2(); } }