source: trunk/greenstone3-extensions/vishnu/src/vishnu/builder/Indexer.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: 641 bytes
Line 
1package vishnu.builder;
2
3abstract public class Indexer
4{
5 String name;
6 String outputDir = null;
7 String inputDir = null;
8 String collName = null;
9 //String GSDL3_HOME = null;
10
11 public Indexer(String n)
12 {
13 name = n;
14 }
15
16
17// public void setRootDirectory(String root)
18// {
19// GSDL3_HOME = root;
20// }
21
22
23 public void setOutputDirectory(String s)
24 {
25 outputDir = s;
26 }
27
28
29 public void setInputDirectory(String s)
30 {
31 inputDir = s;
32 }
33
34
35 public void setCollectionName(String c)
36 {
37 collName = c;
38 }
39
40 abstract public void startIndexing();
41}
Note: See TracBrowser for help on using the repository browser.