package sun.awt.X11;
import sun.misc.*;
import java.util.logging.*;
public class XwcTextItem 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; }
public XwcTextItem(long addr) {
log.finest("Creating");
pData=addr;
should_free_memory = false;
}
public XwcTextItem() {
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 long get_chars(int index) { log.finest(""); return Native.getLong(pData+0)+index*Native.getLongSize(); }
public long get_chars() { log.finest("");return Native.getLong(pData+0); }
public void set_chars(long v) { log.finest(""); Native.putLong(pData + 0, v); }
public int get_nchars() { log.finest("");return (Native.getInt(pData+8)); }
public void set_nchars(int v) { log.finest(""); Native.putInt(pData+8, v); }
public int get_delta() { log.finest("");return (Native.getInt(pData+12)); }
public void set_delta(int v) { log.finest(""); Native.putInt(pData+12, v); }
public long get_font_set(int index) { log.finest(""); return Native.getLong(pData+16)+index*Native.getLongSize(); }
public long get_font_set() { log.finest("");return Native.getLong(pData+16); }
public void set_font_set(long v) { log.finest(""); Native.putLong(pData + 16, v); }
String getName() {
return "XwcTextItem";
}
String getFieldsAsString() {
String ret="";
ret += ""+"chars = " + get_chars() +", ";
ret += ""+"nchars = " + get_nchars() +", ";
ret += ""+"delta = " + get_delta() +", ";
ret += ""+"font_set = " + get_font_set() +", ";
return ret;
}
}