com.github.moaxcp.x11client.protocol.xproto.Fontprop 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 Fontprop implements XStruct {
private int name;
private int value;
public static Fontprop readFontprop(X11Input in) throws IOException {
int name = in.readCard32();
int value = in.readCard32();
Fontprop.FontpropBuilder javaBuilder = Fontprop.builder();
javaBuilder.name(name);
javaBuilder.value(value);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard32(name);
out.writeCard32(value);
}
@Override
public int getSize() {
return 8;
}
public static class FontpropBuilder {
public int getSize() {
return 8;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy