Guest User

Untitled

a guest
Apr 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import javax.swing.JMenuBar;
  2.  
  3. public class RollBaby
  4. {
  5.  
  6. public RollBaby()
  7. {
  8. }
  9.  
  10. public static void main(String args[])
  11. {
  12. DisplayWindow d = new DisplayWindow();
  13. JMenuBar b = new JMenuBar();
  14. d.setJMenuBar(b);
  15. RollB p = new RollB(b);
  16. d.addPanel(p);
  17. d.showFrame();
  18. }
  19. }
Add Comment
Please, Sign In to add comment