/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 1.3.31
 *
 * Do not make changes to this file unless you know what you are doing--modify
 * the SWIG interface file instead.
 * ----------------------------------------------------------------------------- */


public class OBGlobalDataBase {
  private long swigCPtr;
  protected boolean swigCMemOwn;

  protected OBGlobalDataBase(long cPtr, boolean cMemoryOwn) {
    swigCMemOwn = cMemoryOwn;
    swigCPtr = cPtr;
  }

  protected static long getCPtr(OBGlobalDataBase obj) {
    return (obj == null) ? 0 : obj.swigCPtr;
  }

  protected void finalize() {
    delete();
  }

  public synchronized void delete() {
    if(swigCPtr != 0 && swigCMemOwn) {
      swigCMemOwn = false;
      openbabelJNI.delete_OBGlobalDataBase(swigCPtr);
    }
    swigCPtr = 0;
  }

  public OBGlobalDataBase() {
    this(openbabelJNI.new_OBGlobalDataBase(), true);
  }

  public void Init() {
    openbabelJNI.OBGlobalDataBase_Init(swigCPtr, this);
  }

  public long GetSize() {
    return openbabelJNI.OBGlobalDataBase_GetSize(swigCPtr, this);
  }

  public void SetReadDirectory(String dir) {
    openbabelJNI.OBGlobalDataBase_SetReadDirectory(swigCPtr, this, dir);
  }

  public void SetEnvironmentVariable(String var) {
    openbabelJNI.OBGlobalDataBase_SetEnvironmentVariable(swigCPtr, this, var);
  }

  public void ParseLine(String arg0) {
    openbabelJNI.OBGlobalDataBase_ParseLine(swigCPtr, this, arg0);
  }

}


syntax highlighted by Code2HTML, v. 0.9.1