com.github.moaxcp.x11client.protocol.xproto.Char2b 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.XStruct;
import java.io.IOException;
import java.lang.Override;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class Char2b implements XStruct {
private byte byte1;
private byte byte2;
public static Char2b readChar2b(X11Input in) throws IOException {
byte byte1 = in.readCard8();
byte byte2 = in.readCard8();
Char2b.Char2bBuilder javaBuilder = Char2b.builder();
javaBuilder.byte1(byte1);
javaBuilder.byte2(byte2);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(byte1);
out.writeCard8(byte2);
}
@Override
public int getSize() {
return 2;
}
public static class Char2bBuilder {
public int getSize() {
return 2;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy