2cfdd996a4dfb7d8c3762ba5d5a0382cd17a9def
[yaz4j-moved-to-github.git] / src / main / java / org / yaz4j / ResultSetOptionsCollection.java
1 package org.yaz4j;
2
3 import org.yaz4j.jni.SWIGTYPE_p_ZOOM_resultset_p;
4 import org.yaz4j.jni.yaz4jlib;
5
6 public class ResultSetOptionsCollection
7 {
8         private SWIGTYPE_p_ZOOM_resultset_p resultSet = null ;  
9         
10     ResultSetOptionsCollection(SWIGTYPE_p_ZOOM_resultset_p resultSet)
11     {
12         this.resultSet = resultSet;
13     }
14     
15     public void finalize()
16     {
17         resultSet = null ;
18     }
19
20         public String get(String key)
21         {
22                 return yaz4jlib.ZOOM_resultset_option_get(resultSet, key) ;
23         }
24         
25         public void set(String key, String value)
26         {
27                 yaz4jlib.ZOOM_resultset_option_set(resultSet, key, value) ;
28         }
29 }