com.github.moaxcp.x11.protocol.xinput.XIChangeProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xinput Show documentation
Show all versions of x11-protocol-xinput Show documentation
An implementation of the x11 xinput protocol in java
package com.github.moaxcp.x11.protocol.xinput;
import com.github.moaxcp.x11.protocol.OneWayRequest;
import com.github.moaxcp.x11.protocol.X11Input;
public interface XIChangeProperty extends OneWayRequest {
byte OPCODE = 57;
static XIChangeProperty readXIChangeProperty(X11Input in) {
throw new UnsupportedOperationException();
}
}