Drawing complex shapes
Appearance
From Wikibooks, open books for an open world
Navigate User Interface topic:()
Computer code
Code listing 9.4: Drawing complex shapes
publicclass Hello{ JLabellabel=newJLabel("Hello, Mundo!"); JFrameframe=newJFrame("BK*"); frame.add(label); frame.setSize(300,300); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); frame.setLocationRelativeTo(null); frame.toFront(); } }