1   package org.neo.swarm;
2   
3   public class CompTestAImpl implements CompTestA {
4       public CompTestAImpl() {
5       }
6   
7       public void doSomething() {
8          System.out.println("A is Doing Something");
9       }
10  }