source: trunk/greenstone3-extensions/vishnu/src/vishnu/testvis/object/LengthTable.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:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 356 bytes
Line 
1
2/**
3 * Title: <p>
4 * Description: <p>
5 * Copyright: Copyright (c) <p>
6 * Company: <p>
7 * @author
8 * @version 1.0
9 */
10package vishnu.testvis.object;
11
12public class LengthTable
13{
14 public int index;
15 public int length;
16 public LengthTable(int ind, int len)
17 {
18 index= ind;
19 length = len;
20 }
21}
Note: See TracBrowser for help on using the repository browser.