com.github.moaxcp.x11client.protocol.render.Pointfix 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.render;
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 Pointfix implements XStruct {
private int x;
private int y;
public static Pointfix readPointfix(X11Input in) throws IOException {
int x = in.readInt32();
int y = in.readInt32();
Pointfix.PointfixBuilder javaBuilder = Pointfix.builder();
javaBuilder.x(x);
javaBuilder.y(y);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeInt32(x);
out.writeInt32(y);
}
@Override
public int getSize() {
return 8;
}
public static class PointfixBuilder {
public int getSize() {
return 8;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy