renamed kelondroEcoRecords to kelondroFullRecords (the "Eco"-name will be used for something else)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4331 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 17 years ago
parent 065ba2d60f
commit b806a6af8b

@ -52,7 +52,7 @@ import java.util.Iterator;
import java.util.Map;
import java.util.TreeMap;
public class kelondroFixedWidthArray extends kelondroEcoRecords implements kelondroArray {
public class kelondroFixedWidthArray extends kelondroFullRecords implements kelondroArray {
// define the Over-Head-Array
private static short thisOHBytes = 0; // our record definition does not need extra bytes

@ -31,12 +31,12 @@ import java.io.IOException;
import java.util.Iterator;
import java.util.TreeMap;
public class kelondroEcoRecords extends kelondroAbstractRecords {
public class kelondroFullRecords extends kelondroAbstractRecords {
// static supervision objects: recognize and coordinate all activities
private static TreeMap<String, kelondroEcoRecords> recordTracker = new TreeMap<String, kelondroEcoRecords>();
private static TreeMap<String, kelondroFullRecords> recordTracker = new TreeMap<String, kelondroFullRecords>();
public kelondroEcoRecords(
public kelondroFullRecords(
File file,
short ohbytec, short ohhandlec,
kelondroRow rowdef, int FHandles, int txtProps, int txtPropWidth) throws IOException {
@ -44,7 +44,7 @@ public class kelondroEcoRecords extends kelondroAbstractRecords {
recordTracker.put(this.filename, this);
}
public kelondroEcoRecords(
public kelondroFullRecords(
kelondroRA ra, String filename,
short ohbytec, short ohhandlec,
kelondroRow rowdef, int FHandles, int txtProps, int txtPropWidth,
@ -53,7 +53,7 @@ public class kelondroEcoRecords extends kelondroAbstractRecords {
recordTracker.put(this.filename, this);
}
public kelondroEcoRecords(
public kelondroFullRecords(
kelondroRA ra, String filename) throws IOException{
super(ra, filename, true);
recordTracker.put(this.filename, this);

@ -53,7 +53,7 @@ import java.io.RandomAccessFile;
import java.util.Iterator;
import java.util.StringTokenizer;
public final class kelondroStack extends kelondroEcoRecords {
public final class kelondroStack extends kelondroFullRecords {
// define the Over-Head-Array
private static short thisOHBytes = 0; // our record definition does not need extra bytes

Loading…
Cancel
Save