Java Programming/Graphics/Drawing complex shapes

Category:Book:Java Programming#Graphics/Drawing%20complex%20shapes%20
Navigate User Interface topic:( v  d  e )
Category:Book:Java Programming#Graphics/Drawing%20complex%20shapes%20
Category:Book:Java Programming#Graphics/Drawing%20complex%20shapes%20
Computer code 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();
    }
}
Category:Book:Java Programming#Graphics/Drawing%20complex%20shapes%20 Category:Book:Java Programming/Graphics#Drawing%20complex%20shapes%20Category:Pages with deep filing
Category:Book:Java Programming Category:Book:Java Programming/Graphics Category:Pages with deep filing