1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
// 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 XIMStyles extends XWrapperBase {
private Unsafe unsafe = XlibWrapper.unsafe;
private final boolean should_free_memory;
public static int getSize() { return 8; }
public int getDataSize() { return getSize(); }
long pData;
public long getPData() { return pData; }
XIMStyles(long addr) {
log.finest("Creating");
pData=addr;
should_free_memory = false;
}
XIMStyles() {
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 short get_count_styles() { log.finest("");return (Native.getShort(pData+0)); }
public void set_count_styles(short v) { log.finest(""); Native.putShort(pData+0, v); }
public long get_supported_styles(int index) { log.finest(""); return Native.getLong(Native.getLong(pData+4)+index*Native.getLongSize()); }
public long get_supported_styles() { log.finest("");return Native.getLong(pData+4); }
public void set_supported_styles(long v) { log.finest(""); Native.putLong(pData + 4, v); }
String getName() {
return "XIMStyles";
}
String getFieldsAsString() {
String ret="";
ret += ""+"count_styles = " + get_count_styles() +", ";
ret += ""+"supported_styles = " + get_supported_styles() +", ";
return ret;
}
}
|