ByteArrayInputStream.java :  » Testing » KeY » java » io » Java Open Source

Java Open Source » Testing » KeY 
KeY » java » io » ByteArrayInputStream.java



package java.io;
public class ByteArrayInputStream extends InputStream {
    protected byte[] buf;
    protected int pos;
    protected int mark;
    protected int count;
    public ByteArrayInputStream(byte[] buffer) {}
    public ByteArrayInputStream(byte[] buffer, int offset, int length) {}
    public synchronized int available() {}
    public synchronized void mark(int readLimit) {}
    public boolean markSupported() {}
    public synchronized int read() {}
    public synchronized int read(byte[] buffer, int offset, int length) {}
    public synchronized void reset() {}
    public synchronized long skip(long num) {}
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.