1 /*
2 * Created on Oct 22, 2003
3 *
4 * Copyright neotechnologies.org
5 */
6 package functional.performance;
7
8 /***
9 * @author neil.avery
10 */
11 public interface ComponentAI {
12 public void doStuff();
13 public void doStuffToB();
14
15 }