Guest User

MainPane

a guest
Mar 10th, 2015
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 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.  
  10.  
  11.  
  12.  
  13. public MainPane(int width, int height){
  14.  
  15. super.setSize(width,height);
  16. super.setBackground(Color.GREEN);
  17. super.setVisible(true);
  18.  
  19.  
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment