mirror of
https://github.com/openbabel/openbabel.git
synced 2025-02-25 18:55:23 -06:00
53 lines
1.4 KiB
Java
53 lines
1.4 KiB
Java
/* ----------------------------------------------------------------------------
|
|
* 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 OBPairData extends OBGenericData {
|
|
private long swigCPtr;
|
|
|
|
protected OBPairData(long cPtr, boolean cMemoryOwn) {
|
|
super(openbabelJNI.SWIGOBPairDataUpcast(cPtr), cMemoryOwn);
|
|
swigCPtr = cPtr;
|
|
}
|
|
|
|
protected static long getCPtr(OBPairData obj) {
|
|
return (obj == null) ? 0 : obj.swigCPtr;
|
|
}
|
|
|
|
protected void finalize() {
|
|
delete();
|
|
}
|
|
|
|
public synchronized void delete() {
|
|
if(swigCPtr != 0 && swigCMemOwn) {
|
|
swigCMemOwn = false;
|
|
openbabelJNI.delete_OBPairData(swigCPtr);
|
|
}
|
|
swigCPtr = 0;
|
|
super.delete();
|
|
}
|
|
|
|
public OBPairData() {
|
|
this(openbabelJNI.new_OBPairData(), true);
|
|
}
|
|
|
|
public OBGenericData Clone(OBBase arg0) {
|
|
long cPtr = openbabelJNI.OBPairData_Clone(swigCPtr, this, OBBase.getCPtr(arg0), arg0);
|
|
return (cPtr == 0) ? null : new OBGenericData(cPtr, false);
|
|
}
|
|
|
|
public void SetValue(String v) {
|
|
openbabelJNI.OBPairData_SetValue__SWIG_0(swigCPtr, this, v);
|
|
}
|
|
|
|
public String GetValue() {
|
|
return openbabelJNI.OBPairData_GetValue(swigCPtr, this);
|
|
}
|
|
|
|
}
|