// This file is an automatically generated file, please do not edit this file, modify the WrapperGenerator.java file instead ! package sun.awt.X11; import sun.misc.*; import java.util.logging.*; public class XIMPreeditDrawCallbackStruct extends XWrapperBase { private Unsafe unsafe = XlibWrapper.unsafe; private final boolean should_free_memory; public static int getSize() { return 24; } public int getDataSize() { return getSize(); } long pData; public long getPData() { return pData; } XIMPreeditDrawCallbackStruct(long addr) { log.finest("Creating"); pData=addr; should_free_memory = false; } XIMPreeditDrawCallbackStruct() { log.finest("Creating"); pData = unsafe.allocateMemory(getSize()); should_free_memory = true; } public void dispose() { log.finest("Disposing"); if (should_free_memory) { log.finest("freeing memory"); unsafe.freeMemory(pData); } } public int get_caret() { log.finest("");return (Native.getInt(pData+0)); } public void set_caret(int v) { log.finest(""); Native.putInt(pData+0, v); } public int get_chg_first() { log.finest("");return (Native.getInt(pData+4)); } public void set_chg_first(int v) { log.finest(""); Native.putInt(pData+4, v); } public int get_chg_length() { log.finest("");return (Native.getInt(pData+8)); } public void set_chg_length(int v) { log.finest(""); Native.putInt(pData+8, v); } public XIMText get_text(int index) { log.finest(""); return (Native.getLong(pData+16) != 0)?(new XIMText(Native.getLong(pData+16)+index*32)):(null); } public long get_text() { log.finest("");return Native.getLong(pData+16); } public void set_text(long v) { log.finest(""); Native.putLong(pData + 16, v); } String getName() { return "XIMPreeditDrawCallbackStruct"; } String getFieldsAsString() { String ret=""; ret += ""+"caret = " + get_caret() +", "; ret += ""+"chg_first = " + get_chg_first() +", "; ret += ""+"chg_length = " + get_chg_length() +", "; ret += ""+"text = " + get_text() +", "; return ret; } }