it.tidalwave.javax.swing.Timer Maven / Gradle / Ivy
/***********************************************************************************************************************
* To change this template, choose Tools | Templates
* and open the template in the editor.
**********************************************************************************************************************/
package it.tidalwave.javax.swing;
import it.tidalwave.java.awt.event.ActionListener;
/***********************************************************************************************************************
*
* @author Fabrizio Giudici
* @version $Id: $
*
**********************************************************************************************************************/
public class Timer
{
public Timer (int delay, ActionListener actionListener)
{
throw new RuntimeException("Stub!");
}
public void setRepeats (boolean repeats)
{
throw new RuntimeException("Stub!");
}
public void restart()
{
throw new RuntimeException("Stub!");
}
}