source: trunk/greenstone3-extensions/vishnu/src/vishnu/datablock/Query.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.4 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
19
20package vishnu.datablock;
21import java.io.*;
22
23public class Query implements Serializable
24{
25 public String query = null;
26 public String collection = null;
27 public int docNum = -1;
28 public String action = null;
29
30 public Query(){}
31
32 public Query(String q, String c, String s)
33 {
34 query = q;
35 collection = c;
36 }
37
38 public void setCollection(String c)
39 {
40 collection = c;
41 }
42
43 public void setDocNum(int id)
44 {
45 docNum = id;
46 }
47
48 public void setQuery(String q)
49 {
50 query = q;
51 }
52
53 public void setAction(String a)
54 {
55 action = a;
56 }
57
58}
59
60
61
62
63
64
65
66
67
68
69
Note: See TracBrowser for help on using the repository browser.