mirror of
https://github.com/openbabel/openbabel.git
synced 2026-07-30 16:18:20 -05:00
56 lines
1.6 KiB
Java
56 lines
1.6 KiB
Java
/* ----------------------------------------------------------------------------
|
|
* This file was automatically generated by SWIG (http://www.swig.org).
|
|
* Version 1.3.30
|
|
*
|
|
* Do not make changes to this file unless you know what you are doing--modify
|
|
* the SWIG interface file instead.
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
|
|
public class OBIsotopeTable extends OBGlobalDataBase {
|
|
private long swigCPtr;
|
|
|
|
protected OBIsotopeTable(long cPtr, boolean cMemoryOwn) {
|
|
super(net.sourceforge.openbabelJNI.SWIGOBIsotopeTableUpcast(cPtr), cMemoryOwn);
|
|
swigCPtr = cPtr;
|
|
}
|
|
|
|
protected static long getCPtr(OBIsotopeTable obj) {
|
|
return (obj == null) ? 0 : obj.swigCPtr;
|
|
}
|
|
|
|
protected void finalize() {
|
|
delete();
|
|
}
|
|
|
|
public synchronized void delete() {
|
|
if(swigCPtr != 0 && swigCMemOwn) {
|
|
swigCMemOwn = false;
|
|
net.sourceforge.openbabelJNI.delete_OBIsotopeTable(swigCPtr);
|
|
}
|
|
swigCPtr = 0;
|
|
super.delete();
|
|
}
|
|
|
|
public OBIsotopeTable() {
|
|
this(net.sourceforge.openbabelJNI.new_OBIsotopeTable(), true);
|
|
}
|
|
|
|
public long GetSize() {
|
|
return net.sourceforge.openbabelJNI.OBIsotopeTable_GetSize(swigCPtr, this);
|
|
}
|
|
|
|
public void ParseLine(String arg0) {
|
|
net.sourceforge.openbabelJNI.OBIsotopeTable_ParseLine(swigCPtr, this, arg0);
|
|
}
|
|
|
|
public double GetExactMass(long atomicNum, long isotope) {
|
|
return net.sourceforge.openbabelJNI.OBIsotopeTable_GetExactMass__SWIG_0(swigCPtr, this, atomicNum, isotope);
|
|
}
|
|
|
|
public double GetExactMass(long atomicNum) {
|
|
return net.sourceforge.openbabelJNI.OBIsotopeTable_GetExactMass__SWIG_1(swigCPtr, this, atomicNum);
|
|
}
|
|
|
|
}
|