TimerState.java
上传用户:qingzhou
上传日期:2013-04-21
资源大小:733k
文件大小:0k
源码类别:

破解

开发平台:

Java

  1. package magick;
  2. /**
  3.  * Used in MagickImage.createImage to specify the size 
  4.  * of component.
  5.  *
  6.  * @author Eric Yeo
  7.  */
  8. public interface TimerState {
  9.     public final int UndefinedTimerState = 0;
  10.     public final int StoppedTimerState = 1;
  11.     public final int RunningTimerState = 2;
  12. }