mirror of
https://github.com/openbabel/openbabel.git
synced 2025-02-25 18:55:23 -06:00
61 lines
1.7 KiB
Java
61 lines
1.7 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 OBCommentData extends OBGenericData {
|
|
private long swigCPtr;
|
|
|
|
protected OBCommentData(long cPtr, boolean cMemoryOwn) {
|
|
super(openbabelJNI.SWIGOBCommentDataUpcast(cPtr), cMemoryOwn);
|
|
swigCPtr = cPtr;
|
|
}
|
|
|
|
protected static long getCPtr(OBCommentData obj) {
|
|
return (obj == null) ? 0 : obj.swigCPtr;
|
|
}
|
|
|
|
protected void finalize() {
|
|
delete();
|
|
}
|
|
|
|
public synchronized void delete() {
|
|
if(swigCPtr != 0 && swigCMemOwn) {
|
|
swigCMemOwn = false;
|
|
openbabelJNI.delete_OBCommentData(swigCPtr);
|
|
}
|
|
swigCPtr = 0;
|
|
super.delete();
|
|
}
|
|
|
|
public OBCommentData() {
|
|
this(openbabelJNI.new_OBCommentData__SWIG_0(), true);
|
|
}
|
|
|
|
public OBCommentData(OBCommentData arg0) {
|
|
this(openbabelJNI.new_OBCommentData__SWIG_1(OBCommentData.getCPtr(arg0), arg0), true);
|
|
}
|
|
|
|
public OBGenericData Clone(OBBase arg0) {
|
|
long cPtr = openbabelJNI.OBCommentData_Clone(swigCPtr, this, OBBase.getCPtr(arg0), arg0);
|
|
return (cPtr == 0) ? null : new OBGenericData(cPtr, false);
|
|
}
|
|
|
|
public void SetData(String data) {
|
|
openbabelJNI.OBCommentData_SetData__SWIG_0(swigCPtr, this, data);
|
|
}
|
|
|
|
public String GetData() {
|
|
return openbabelJNI.OBCommentData_GetData(swigCPtr, this);
|
|
}
|
|
|
|
public String GetValue() {
|
|
return openbabelJNI.OBCommentData_GetValue(swigCPtr, this);
|
|
}
|
|
|
|
}
|