1 /*
2 * Created on Oct 22, 2003
3 *
4 * Copyright neotechnologies.org
5 */
6 package functional.simpleapp;
7 /***
8 * @author neil.avery
9 */
10 public class ComponentA implements ComponentAI {
11
12 public ComponentA() {
13 }
14
15 public void doStuff() {
16 System.out.println("ComponentA invocation");
17 }
18
19 }