class WindowByReference extends ByReference {
public WindowByReference() { super(XID.SIZE); }
public Window getValue() {
NativeLong value = getPointer().getNativeLong(0);
return value.longValue() == X11.None
? Window.None : new Window(value.longValue());
}
}
class Pixmap extends Drawable {
private static final long serialVersionUID = 1L;
public static final Pixmap None = null;