Advertisement
mainerimiina

ab

Sep 13th, 2013
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import javax.swing.*;
  2. import java.awt.*;
  3.  
  4. public class ab extends JFrame {
  5. public ac panel;
  6.  
  7. public ab() {
  8. panel = new ac();
  9. setLayout(new GridLayout(1, 1, 0, 0));
  10. add(panel);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement