Exemplo n.º 1
0
 /**
  * Adds another buffer to the end of the buffer. All it actually does is add the bytes of the
  * source to the current buffer.
  *
  * @param b The buffer to add.
  */
 public void addBuffer(Buffer b) {
   addBytes(b.getBuffer());
 }