source: trunk/gsdl3/src/java/org/greenstone/gsdl3/gs3build/database/GS3SQLValue.java@ 5800

Last change on this file since 5800 was 5798, checked in by cs025, 21 years ago

Adding gs3build code

  • 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.