package sun.awt.X11;
import sun.misc.*;
import java.util.logging.*;
public class XWindowChanges extends XWrapperBase {
private Unsafe unsafe = XlibWrapper.unsafe;
private final boolean should_free_memory;
public static int getSize() { return 40; }
public int getDataSize() { return getSize(); }
long pData;
public long getPData() { return pData; }
public XWindowChanges(long addr) {
log.finest("Creating");
pData=addr;
should_free_memory = false;
}
public XWindowChanges() {
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_x() { log.finest("");return (Native.getInt(pData+0)); }
public void set_x(int v) { log.finest(""); Native.putInt(pData+0, v); }
public int get_y() { log.finest("");return (Native.getInt(pData+4)); }
public void set_y(int v) { log.finest(""); Native.putInt(pData+4, v); }
public int get_width() { log.finest("");return (Native.getInt(pData+8)); }
public void set_width(int v) { log.finest(""); Native.putInt(pData+8, v); }
public int get_height() { log.finest("");return (Native.getInt(pData+12)); }
public void set_height(int v) { log.finest(""); Native.putInt(pData+12, v); }
public int get_border_width() { log.finest("");return (Native.getInt(pData+16)); }
public void set_border_width(int v) { log.finest(""); Native.putInt(pData+16, v); }
public long get_sibling() { log.finest("");return (Native.getLong(pData+24)); }
public void set_sibling(long v) { log.finest(""); Native.putLong(pData+24, v); }
public int get_stack_mode() { log.finest("");return (Native.getInt(pData+32)); }
public void set_stack_mode(int v) { log.finest(""); Native.putInt(pData+32, v); }
String getName() {
return "XWindowChanges";
}
String getFieldsAsString() {
String ret="";
ret += ""+"x = " + get_x() +", ";
ret += ""+"y = " + get_y() +", ";
ret += ""+"width = " + get_width() +", ";
ret += ""+"height = " + get_height() +", ";
ret += ""+"border_width = " + get_border_width() +", ";
ret += ""+"sibling = " + get_sibling() +", ";
ret += ""+"stack_mode = " + get_stack_mode() +", ";
return ret;
}
}