source: trunk/greenstone3-extensions/gs3build/src/org/greenstone/gsdl3/gs3build/database/GS3SQLValue.java@ 12188

Last change on this file since 12188 was 12188, checked in by kjdon, 18 years ago

Initial revision

  • Property svn:keywords set to Author Date Id Revision
File size: 453 bytes
Line 
1package org.greenstone.gsdl3.gs3build.database;
2
3public class GS3SQLValue
4{ String field;
5 String value;
6 String type;
7
8 public GS3SQLValue(String field, String value)
9 {
10 this.field = field;
11 this.value = value;
12 this.type = null;
13 }
14
15 public GS3SQLValue(String field, String value, String type)
16 {
17 this.field = field;
18 this.value = value;
19 this.type = type;
20 }
21
22 public String getType()
23 {
24 return this.type;
25 }
26}
27
28
Note: See TracBrowser for help on using the repository browser.