Ignore:
Timestamp:
2004-10-12T12:15:23+13:00 (20 years ago)
Author:
kjdon
Message:

added in daniel's mods for new server stuff - not sure what they are :-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/extensions/vishnu/src/vishnu/datablock/DataBlock.java

    r8189 r8288  
    88public class DataBlock implements Serializable
    99{
    10     public int [] docs;
    11     public String [] descriptions;
    12     public String [] words;
    13     public SparseMatrix matrix;
    14     public Vector [] clusters;
    15     public Point2D [] sammon;
     10    public int [] docs = null;
     11    public String [] descriptions = null;
     12    public String [] words = null;
     13    public SparseMatrix matrix = null;
     14    public Vector [] clusters = null;
     15    public Point2D [] sammon = null;
    1616
    17     public DataBlock(int[] docs,
    18         String [] descriptions,
    19         String [] words,
    20         SparseMatrix matrix,
    21         Vector [] clusters,
    22         Point2D [] sammon)
    23     {
    24         this.docs = docs;
    25         this.descriptions = descriptions;
     17    public DataBlock() {
     18    }
     19    public DataBlock(int[] docs,
     20             String [] descriptions,
     21             String [] words,
     22             SparseMatrix matrix,
     23             Vector [] clusters,
     24             Point2D [] sammon)
     25    {
     26    this.docs = docs;
     27    this.descriptions = descriptions;
    2628        this.words = words;
    27         this.matrix = matrix;
    28         this.clusters = clusters;
    29         this.sammon = sammon;
    30     }
    31 
     29    this.matrix = matrix;
     30    this.clusters = clusters;
     31    this.sammon = sammon;
     32    }
     33   
    3234}
    3335
Note: See TracChangeset for help on using the changeset viewer.