KickJava   Java API By Example, From Geeks To Geeks.

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


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
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@, Leo Mekenkamp. All rights reserved.
6
//
7
// $Id: Storable.java,v 1.1 2004/01/02 09:24:38 leomekenkamp Exp $
8

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

16 public interface Storable extends Serializable JavaDoc {
17     
18     public String JavaDoc getStorageName();
19
20 }
21
Popular Tags