From b806a6af8bf847615e0f12d15b9ab06090d82b20 Mon Sep 17 00:00:00 2001 From: orbiter Date: Sun, 13 Jan 2008 00:41:22 +0000 Subject: [PATCH] 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 --- source/de/anomic/kelondro/kelondroFixedWidthArray.java | 2 +- ...elondroEcoRecords.java => kelondroFullRecords.java} | 10 +++++----- source/de/anomic/kelondro/kelondroStack.java | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) rename source/de/anomic/kelondro/{kelondroEcoRecords.java => kelondroFullRecords.java} (97%) diff --git a/source/de/anomic/kelondro/kelondroFixedWidthArray.java b/source/de/anomic/kelondro/kelondroFixedWidthArray.java index 9e5949c32..0e7d0d657 100644 --- a/source/de/anomic/kelondro/kelondroFixedWidthArray.java +++ b/source/de/anomic/kelondro/kelondroFixedWidthArray.java @@ -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 diff --git a/source/de/anomic/kelondro/kelondroEcoRecords.java b/source/de/anomic/kelondro/kelondroFullRecords.java similarity index 97% rename from source/de/anomic/kelondro/kelondroEcoRecords.java rename to source/de/anomic/kelondro/kelondroFullRecords.java index 34eca8697..67b1da02e 100644 --- a/source/de/anomic/kelondro/kelondroEcoRecords.java +++ b/source/de/anomic/kelondro/kelondroFullRecords.java @@ -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 recordTracker = new TreeMap(); + private static TreeMap recordTracker = new TreeMap(); - 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); diff --git a/source/de/anomic/kelondro/kelondroStack.java b/source/de/anomic/kelondro/kelondroStack.java index 5e65f371f..854f0942b 100644 --- a/source/de/anomic/kelondro/kelondroStack.java +++ b/source/de/anomic/kelondro/kelondroStack.java @@ -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