1 package org.jvnet.fastinfoset; 2 3 import java.io.OutputStream ; 4 5 public abstract class AccessibleByteBufferOutputStream extends OutputStream { 6 7 16 public abstract byte[] getBuffer(); 17 18 29 public abstract byte[] getBuffer(int length); 30 31 44 public abstract void commitBytes(int length); 45 46 51 public abstract int getStart(); 52 53 58 public abstract int getLength(); 59 } 60 | Popular Tags |