com.github.moaxcp.x11client.protocol.xproto.SetModifierMappingReply 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.xproto;
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 SetModifierMappingReply implements XReply {
private byte status;
private short sequenceNumber;
public static SetModifierMappingReply readSetModifierMappingReply(byte status,
short sequenceNumber, X11Input in) throws IOException {
int length = in.readCard32();
in.readPad(24);
SetModifierMappingReply.SetModifierMappingReplyBuilder javaBuilder = SetModifierMappingReply.builder();
javaBuilder.status(status);
javaBuilder.sequenceNumber(sequenceNumber);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(getResponseCode());
out.writeByte(status);
out.writeCard16(sequenceNumber);
out.writeCard32(getLength());
}
@Override
public int getSize() {
return 8;
}
public static class SetModifierMappingReplyBuilder {
public SetModifierMappingReply.SetModifierMappingReplyBuilder status(MappingStatus status) {
this.status = (byte) status.getValue();
return this;
}
public SetModifierMappingReply.SetModifierMappingReplyBuilder status(byte status) {
this.status = status;
return this;
}
public int getSize() {
return 8;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy