Advertisement
Guest User

Java Question

a guest
Dec 22nd, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. import javax.swing.*;
  2.  
  3. public class Counter extends JFrame {
  4.     public static JFrame smallFrame = new JFrame();
  5.  
  6.    public Counter() {
  7.       // set the big frame
  8.    }
  9.  
  10.    public void smallFrame() {
  11.       // set the small frame
  12.    }
  13.  
  14.    public static void main(String[] args) {
  15.       new Counter();
  16.    }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement