KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > thoughtriver > open > vectorvisuals > task > ExecutionState


1 /*
2  * ExecutionState.java
3  *
4  * Created on 12 November 2004, 14:02
5  */

6
7 package com.thoughtriver.open.vectorvisuals.task;
8
9 /**
10  * This enumeration simply defines the two possible execution states that an
11  * <CODE>AnimationTask</CODE> or <CODE>TaskManager</CODE> can be in.
12  *
13  * @author Brandon Franklin
14  * @version $Date: 2006/11/25 09:15:41 $
15  */

16 public enum ExecutionState {
17     running, stopped
18 }
19
Popular Tags