KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > core > storage > gammaStore > AbstractStorage


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Core License version 1 published by ozone-db.org.
3
//
4
// Copyright (C) 2003-@year@, Leo Mekenkamp. All rights reserved.
5
//
6
// $Id$
7

8 package org.ozoneDB.core.storage.gammaStore;
9
10 import java.io.IOException JavaDoc;
11
12 /**
13  * @author <a HREF="mailto:leoATmekenkampD0Tcom">Leo Mekenkamp (mind the anti sp@m)</a>
14  * @version $Id $
15  */

16 public abstract class AbstractStorage implements Storage {
17     
18     public void readFully(byte[] b) throws IOException JavaDoc {
19         readFully(b, 0, b.length);
20     }
21     
22     public void write(byte[] b) throws IOException JavaDoc {
23         write(b, 0, b.length);
24     }
25     
26 }
27
Popular Tags