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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
// 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 XConfigureRequestEvent extends XWrapperBase {
private Unsafe unsafe = XlibWrapper.unsafe;
private final boolean should_free_memory;
public static int getSize() { return 56; }
public int getDataSize() { return getSize(); }
long pData;
public long getPData() { return pData; }
XConfigureRequestEvent(long addr) {
log.finest("Creating");
pData=addr;
should_free_memory = false;
}
XConfigureRequestEvent() {
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_type() { log.finest("");return (Native.getInt(pData+0)); }
public void set_type(int v) { log.finest(""); Native.putInt(pData+0, v); }
public long get_serial() { log.finest("");return (Native.getLong(pData+4)); }
public void set_serial(long v) { log.finest(""); Native.putLong(pData+4, v); }
public boolean get_send_event() { log.finest("");return (Native.getBool(pData+8)); }
public void set_send_event(boolean v) { log.finest(""); Native.putBool(pData+8, v); }
public long get_display() { log.finest("");return (Native.getLong(pData+12)); }
public void set_display(long v) { log.finest(""); Native.putLong(pData+12, v); }
public long get_parent() { log.finest("");return (Native.getLong(pData+16)); }
public void set_parent(long v) { log.finest(""); Native.putLong(pData+16, v); }
public long get_window() { log.finest("");return (Native.getLong(pData+20)); }
public void set_window(long v) { log.finest(""); Native.putLong(pData+20, v); }
public int get_x() { log.finest("");return (Native.getInt(pData+24)); }
public void set_x(int v) { log.finest(""); Native.putInt(pData+24, v); }
public int get_y() { log.finest("");return (Native.getInt(pData+28)); }
public void set_y(int v) { log.finest(""); Native.putInt(pData+28, v); }
public int get_width() { log.finest("");return (Native.getInt(pData+32)); }
public void set_width(int v) { log.finest(""); Native.putInt(pData+32, v); }
public int get_height() { log.finest("");return (Native.getInt(pData+36)); }
public void set_height(int v) { log.finest(""); Native.putInt(pData+36, v); }
public int get_border_width() { log.finest("");return (Native.getInt(pData+40)); }
public void set_border_width(int v) { log.finest(""); Native.putInt(pData+40, v); }
public long get_above() { log.finest("");return (Native.getLong(pData+44)); }
public void set_above(long v) { log.finest(""); Native.putLong(pData+44, v); }
public int get_detail() { log.finest("");return (Native.getInt(pData+48)); }
public void set_detail(int v) { log.finest(""); Native.putInt(pData+48, v); }
public long get_value_mask() { log.finest("");return (Native.getLong(pData+52)); }
public void set_value_mask(long v) { log.finest(""); Native.putLong(pData+52, v); }
String getName() {
return "XConfigureRequestEvent";
}
String getFieldsAsString() {
String ret="";
ret += ""+"type = " + XlibWrapper.eventToString[get_type()] +", ";
ret += ""+"serial = " + get_serial() +", ";
ret += ""+"send_event = " + get_send_event() +", ";
ret += ""+"display = " + get_display() +", ";
ret += ""+"parent = " + get_parent() +", ";
ret += ""+"window = " + getWindow(get_window()) + ", ";
ret += ""+"x = " + get_x() +", ";
ret += ""+"y = " + get_y() +", ";
ret += ""+"width = " + get_width() +", ";
ret += ""+"height = " + get_height() +", ";
ret += ""+"border_width = " + get_border_width() +", ";
ret += ""+"above = " + get_above() +", ";
ret += ""+"detail = " + get_detail() +", ";
ret += ""+"value_mask = " + get_value_mask() +", ";
return ret;
}
}
|