Java Programming/Graphics/Drawing complex shapes
Category:Book:Java Programming#Graphics/Drawing%20complex%20shapes%20
Navigate User Interface topic: |
![]() |
Code listing 9.4: Drawing complex shapes
public class Hello {
JLabel label = newJLabel("Hello, Mundo!");
JFrame frame = new JFrame("BK*");
frame.add(label);
frame.setSize(300, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
frame.setLocationRelativeTo(null);
frame.toFront();
}
}
|