source: trunk/greenstone3-extensions/vishnu/src/vishnu/server/Search/SearchInterface.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: 1.3 KB
Line 
1/*********************************************************************
2 Copyright (C) 2003 Imperial College London
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17***********************************************************************/
18
19package vishnu.server.Search;
20
21import vishnu.datablock.*;
22import java.util.*;
23import org.w3c.dom.Element;
24
25public interface SearchInterface
26{
27
28 public static final int MAX_DOCS = 100;
29 public static final int MAX_DESCRIPTION_LENGTH = 200;
30
31 public void search(String query);
32
33 public Vector getDocIdentifiers();
34
35 public Vector getDocDescriptions();
36
37 public Vector getDocContent(int doc_num);
38
39 //public void setRootDirectory(String root);
40}
41
Note: See TracBrowser for help on using the repository browser.