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