Guest User

MainPane

a guest
Mar 10th, 2015
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package com.felix.pack;
  2.  
  3. import java.awt.Color;
  4.  
  5. import javax.swing.JPanel;
  6.  
  7. public class MainPane extends JPanel {
  8.  
  9. Window control;
  10.  
  11. public MainPane(){}
  12.  
  13.  
  14. public MainPane(int width, int height){
  15.  
  16.  
  17. super.setSize(width,height);
  18. super.setBackground(Color.green);
  19.  
  20. super.setVisible(true);
  21. control = new Window();
  22. control.setPanel(this);
  23.  
  24.  
  25. }
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment