public interface Buffer extends NetObj { public void put(Object obj) throws NetException; public Object get() throws NetException; } The stub for ConcreteBuffer must be named ConcreteBufferStub.
public interface Buffer extends NetObj { public void put(Object obj) throws NetException; public Object get() throws NetException; }