1   /*
2    * Created on Oct 22, 2003
3    *
4    * Copyright neotechnologies.org
5    */
6   package functional.simpleapp;
7   
8   
9   /***
10   * @author neil.avery
11   */
12  public class ComponentB implements ComponentBI {
13  
14      int i;
15  
16      public ComponentB() {
17          System.out.println("Created:" + this);
18      }
19  
20      public void doStuffB() {
21          System.out.println("ComponentB invocation");
22      }
23  
24      public void doFastStuff(int i) {
25          // do nothing
26      }
27  }