Advertisement
guitarman0831

Untitled

Jun 12th, 2011
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3. public class apples {
  4.     public static void main(String args[]){
  5.         tuna tunaObject = new tuna();
  6.         tunaObject.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  7.         tunaObject.setSize(350,100);
  8.         tunaObject.setVisible(true);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement