Advertisement
Kvarz

JList - moving list of item program(2part)

Nov 3rd, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3. public class Execution {
  4.  
  5.     public static void main(String[] args) {
  6.        
  7.             Gui go = new Gui();
  8.             go.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  9.             go.setSize(500,200);
  10.             go.setVisible(true);
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement