com.github.moaxcp.x11.protocol.xkb.ActionUnion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xkb Show documentation
Show all versions of x11-protocol-xkb Show documentation
An implementation of the x11 xkb protocol in java
The newest version!
package com.github.moaxcp.x11.protocol.xkb;
import com.github.moaxcp.x11.protocol.X11Input;
import com.github.moaxcp.x11.protocol.X11Output;
import com.github.moaxcp.x11.protocol.XObject;
import java.io.IOException;
public interface ActionUnion extends XObject {
static ActionUnion readActionUnion(X11Input in) throws IOException {
return null;
}
void write(X11Output out) throws IOException;
}