1 /**
2 * Created by IntelliJ IDEA.
3 * User: dlyon
4 * Date: Feb 4, 2004
5 * Time: 3:43:28 PM
6 * To change this template use Options | File Templates.
7 */
8 package bookExamples.ch13Threads.fsm;
9
10
11 public interface FSM {
12 public boolean[] f(boolean input[]);
13 }
14