source: trunk/greenstone3-extensions/vishnu/src/vishnu/datablock/DataBlock.java@ 8189

Last change on this file since 8189 was 8189, checked in by kjdon, 20 years ago

first version of Imperial College's Visualiser code

  • Property svn:keywords set to Author Date Id Revision
File size: 633 bytes
Line 
1package vishnu.datablock;
2
3import java.io.*;
4import java.util.*;
5
6
7
8public class DataBlock implements Serializable
9{
10 public int [] docs;
11 public String [] descriptions;
12 public String [] words;
13 public SparseMatrix matrix;
14 public Vector [] clusters;
15 public Point2D [] sammon;
16
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;
26 this.words = words;
27 this.matrix = matrix;
28 this.clusters = clusters;
29 this.sammon = sammon;
30 }
31
32}
33
Note: See TracBrowser for help on using the repository browser.