Reformat with 2-space indents
[yaz4j-moved-to-github.git] / src / main / java / org / yaz4j / ResultSet.java
index 75bdc85..ab3af1a 100644 (file)
@@ -6,65 +6,68 @@ import org.yaz4j.jni.SWIGTYPE_p_ZOOM_resultset_p;
 import org.yaz4j.jni.yaz4jlib;
 
 public class ResultSet {
-    //for GC refcount
-    private Connection conn;
-    private SWIGTYPE_p_ZOOM_resultset_p resultSet;
-    private long size = 0;
-    private boolean disposed = false;
+  //for GC refcount
 
-    ResultSet(SWIGTYPE_p_ZOOM_resultset_p resultSet, Connection conn) {
-        this.resultSet = resultSet;
-        size = yaz4jlib.ZOOM_resultset_size(this.resultSet);
-        this.conn = conn;
-    }
+  private Connection conn;
+  private SWIGTYPE_p_ZOOM_resultset_p resultSet;
+  private long size = 0;
+  private boolean disposed = false;
 
-    @Override
-    public void finalize() {
-        this._dispose();
-    }
+  ResultSet(SWIGTYPE_p_ZOOM_resultset_p resultSet, Connection conn) {
+    this.resultSet = resultSet;
+    size = yaz4jlib.ZOOM_resultset_size(this.resultSet);
+    this.conn = conn;
+  }
 
-    /**
-     * Read option by name.
-     * @param name option name
-     * @return option value
-     */
-    public String option(String name) {
-      return yaz4jlib.ZOOM_resultset_option_get(resultSet, name);
-    }
+  @Override
+  public void finalize() {
+    this._dispose();
+  }
 
-    /**
-     * Write option with a given name.
-     * @param name option name
-     * @param value option value
-     * @return result set (self) for chainability
-     */
-    public ResultSet option(String name, String value) {
-      yaz4jlib.ZOOM_resultset_option_set(resultSet, name, value);
-      return this;
-    }
+  /**
+   * Read option by name.
+   * @param name option name
+   * @return option value
+   */
+  public String option(String name) {
+    return yaz4jlib.ZOOM_resultset_option_get(resultSet, name);
+  }
 
-    public Record getRecord(int index) throws ZoomException {
-      SWIGTYPE_p_ZOOM_record_p record = 
-        yaz4jlib.ZOOM_resultset_record(resultSet, index);
-      //may be out of range or unsupported syntax
-      if (record == null) {
-        return null;
-      }
-      int errorCode = yaz4jlib.ZOOM_record_error(record, null, null, null);
-      if (errorCode != 0) throw new ZoomException("Record excpetion, code " + errorCode);
-      return new Record(record, this);
-    }
+  /**
+   * Write option with a given name.
+   * @param name option name
+   * @param value option value
+   * @return result set (self) for chainability
+   */
+  public ResultSet option(String name, String value) {
+    yaz4jlib.ZOOM_resultset_option_set(resultSet, name, value);
+    return this;
+  }
 
-    public long getHitCount() {
-        return size;
+  public Record getRecord(int index) throws ZoomException {
+    SWIGTYPE_p_ZOOM_record_p record =
+      yaz4jlib.ZOOM_resultset_record(resultSet, index);
+    //may be out of range or unsupported syntax
+    if (record == null) {
+      return null;
+    }
+    int errorCode = yaz4jlib.ZOOM_record_error(record, null, null, null);
+    if (errorCode != 0) {
+      throw new ZoomException("Record excpetion, code " + errorCode);
     }
+    return new Record(record, this);
+  }
+
+  public long getHitCount() {
+    return size;
+  }
 
-    void _dispose() {
-        if (!disposed) {
-            yaz4jlib.ZOOM_resultset_destroy(resultSet);
-            resultSet = null;
-            conn = null;
-            disposed = true;
-        }
+  void _dispose() {
+    if (!disposed) {
+      yaz4jlib.ZOOM_resultset_destroy(resultSet);
+      resultSet = null;
+      conn = null;
+      disposed = true;
     }
+  }
 }