1   /*
2    * Created on Oct 22, 2003
3    * 
4    * Copyright neotechnologies.org
5    */
6   package org.neo.swarm.services.binding;
7   
8   
9   
10  /***
11   * This object does.....
12   * 
13   * @author neil.avery
14   */
15  public class ComponentA  implements ComponentAI {
16  
17  	public void doStuff() {
18  		
19  		System.out.println("ComponentA invocation>> doStuff called");
20  	}
21  	
22  	public void doStuffToB() {
23  		try {
24  			System.out.println("ComponentA invocation calling onto B");			
25  //			ComponentBI compb =
26  //				(ComponentBI) SwarmContainer.instance().getComponent("componentB");
27  //			compb.doStuffB();
28  		} catch (Exception e) {
29  //			LOG.error(e);
30  		}
31  	}
32  
33  }