1 24 25 package com.mckoi.store; 26 27 import java.io.IOException ; 28 29 38 39 public interface MutableArea extends Area { 40 41 52 void checkOut() throws IOException ; 53 54 56 void put(byte b) throws IOException ; 57 58 void put(byte[] buf, int off, int len) throws IOException ; 59 60 void put(byte[] buf) throws IOException ; 61 62 void putShort(short s) throws IOException ; 63 64 void putInt(int i) throws IOException ; 65 66 void putLong(long l) throws IOException ; 67 68 void putChar(char c) throws IOException ; 69 70 } 71 72 | Popular Tags |