import javax.swing.JFrame;
import java.awt.event.*;
import javax.swing.Timer;
import javax.swing.JPanel;

public class MoneyExample extends JPanel implements ActionListener
{
	Timer time;
	public MoneyExample(){
		time=new Timer(100,this);
		time.start();
	}
	
	public static void main(String [] Args){
		JFrame jf=new JFrame();
		jf.setContentPane(new MoneyExample()):
		jf.setSize(400,300);
		jf.setVisible(true);
	}
	
	public void actionPerformed(ActionEvent e){
		
	}
}