Writing the stub for a network buffer

The class ConcreteBuffer implements the network interface Buffer with the following methods:

    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.


- 4 -