001package co.codewizards.cloudstore.core.io; 002 003/** 004 * Subclass of {@link java.io.ByteArrayInputStream} also implementing {@link IByteArrayInputStream}. 005 * 006 * @author Marco หงุ่ยตระกูล-Schulze - marco at codewizards dot co 007 */ 008public class ByteArrayInputStream extends java.io.ByteArrayInputStream implements IByteArrayInputStream { 009 010 public ByteArrayInputStream(byte[] buf) { 011 super(buf); 012 } 013 014 public ByteArrayInputStream(byte[] buf, int offset, int length) { 015 super(buf, offset, length); 016 } 017 018}