com.github.moaxcp.x11client.protocol.xevie.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-client Show documentation
Show all versions of x11-client Show documentation
An x11 client implemented in java
package com.github.moaxcp.x11client.protocol.xevie;
import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import com.github.moaxcp.x11client.protocol.XStruct;
import java.io.IOException;
import java.lang.Override;
public class Event implements XStruct {
public static Event readEvent(X11Input in) throws IOException {
in.readPad(32);
return new Event();
}
@Override
public void write(X11Output out) throws IOException {
out.writePad(32);
}
@Override
public int getSize() {
return 32;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy