01: // kelondroObjectsEntry.java
02: // -------------------------
03: // (C) 29.01.2007 by Michael Peter Christen; mc@anomic.de, Frankfurt a. M., Germany
04: // first published 2004 as part of kelondroMap on http://www.anomic.de
05: //
06: // This is a part of YaCy, a peer-to-peer based web search engine
07: //
08: // $LastChangedDate: 2006-04-02 22:40:07 +0200 (So, 02 Apr 2006) $
09: // $LastChangedRevision: 1986 $
10: // $LastChangedBy: orbiter $
11: //
12: // LICENSE
13: //
14: // This program is free software; you can redistribute it and/or modify
15: // it under the terms of the GNU General Public License as published by
16: // the Free Software Foundation; either version 2 of the License, or
17: // (at your option) any later version.
18: //
19: // This program is distributed in the hope that it will be useful,
20: // but WITHOUT ANY WARRANTY; without even the implied warranty of
21: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22: // GNU General Public License for more details.
23: //
24: // You should have received a copy of the GNU General Public License
25: // along with this program; if not, write to the Free Software
26: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27:
28: package de.anomic.kelondro;
29:
30: public interface kelondroObjectsEntry {
31:
32: public void write(kelondroRA ra);
33:
34: public void read(kelondroRA ra);
35:
36: }
|