Drawing complex shapes
Tools
General
Sister projects
In other projects
![]() | Java Programming Drawing complex shapes | Drawing text![]() |
NavigateUser Interface topic:() |
![]() | Code listing 9.4: Drawing complex shapespublicclassHello{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();}} |
![]() | Java Programming Drawing complex shapes | Drawing text![]() |