com.github.moaxcp.x11client.protocol.xproto.Rgb 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 Rgb implements XStruct {
private short red;
private short green;
private short blue;
public static Rgb readRgb(X11Input in) throws IOException {
short red = in.readCard16();
short green = in.readCard16();
short blue = in.readCard16();
in.readPad(2);
Rgb.RgbBuilder javaBuilder = Rgb.builder();
javaBuilder.red(red);
javaBuilder.green(green);
javaBuilder.blue(blue);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard16(red);
out.writeCard16(green);
out.writeCard16(blue);
out.writePad(2);
}
@Override
public int getSize() {
return 8;
}
public static class RgbBuilder {
public int getSize() {
return 8;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy