com.github.moaxcp.x11client.protocol.xtest.GetVersionReply 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.xtest;
import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import com.github.moaxcp.x11client.protocol.XReply;
import java.io.IOException;
import java.lang.Override;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class GetVersionReply implements XReply {
private byte majorVersion;
private short sequenceNumber;
private short minorVersion;
public static GetVersionReply readGetVersionReply(byte majorVersion, short sequenceNumber,
X11Input in) throws IOException {
int length = in.readCard32();
short minorVersion = in.readCard16();
in.readPad(22);
GetVersionReply.GetVersionReplyBuilder javaBuilder = GetVersionReply.builder();
javaBuilder.majorVersion(majorVersion);
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.minorVersion(minorVersion);
in.readPadAlign(javaBuilder.getSize());
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(getResponseCode());
out.writeCard8(majorVersion);
out.writeCard16(sequenceNumber);
out.writeCard32(getLength());
out.writeCard16(minorVersion);
out.writePadAlign(getSize());
}
@Override
public int getSize() {
return 10;
}
public static class GetVersionReplyBuilder {
public int getSize() {
return 10;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy