KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > restart > TestAppState


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tctest.restart;
5
6 public interface TestAppState {
7
8   public static final String JavaDoc WAITER = "WAITER";
9   public static final String JavaDoc START = "START";
10   public static final String JavaDoc INIT = "INIT";
11   public static final String JavaDoc HOLDER = "HOLDER";
12   public static final String JavaDoc END = "END";
13
14 }
15
Popular Tags