01: // kelondroArray.java
02: // (C) 2006 by Michael Peter Christen; mc@anomic.de, Frankfurt a. M., Germany
03: // first published 01.06.2006 on http://www.anomic.de
04: //
05: // $LastChangedDate: 2006-04-02 22:40:07 +0200 (So, 02 Apr 2006) $
06: // $LastChangedRevision: 1986 $
07: // $LastChangedBy: orbiter $
08: //
09: // LICENSE
10: //
11: // This program is free software; you can redistribute it and/or modify
12: // it under the terms of the GNU General Public License as published by
13: // the Free Software Foundation; either version 2 of the License, or
14: // (at your option) any later version.
15: //
16: // This program is distributed in the hope that it will be useful,
17: // but WITHOUT ANY WARRANTY; without even the implied warranty of
18: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19: // GNU General Public License for more details.
20: //
21: // You should have received a copy of the GNU General Public License
22: // along with this program; if not, write to the Free Software
23: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24:
25: package de.anomic.kelondro;
26:
27: import java.io.IOException;
28:
29: public interface kelondroArray {
30:
31: public int size();
32:
33: public kelondroRow row();
34:
35: public void set(int index, kelondroRow.Entry rowentry)
36: throws IOException;
37:
38: public kelondroRow.Entry get(int index) throws IOException;
39:
40: public int add(kelondroRow.Entry rowinstance) throws IOException;
41:
42: public void remove(int index) throws IOException;
43:
44: public void print() throws IOException;
45:
46: }
|