com.github.moaxcp.x11.protocol.xprint.PrintGetScreenOfContextReply Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xprint Show documentation
Show all versions of x11-protocol-xprint Show documentation
An implementation of the x11 xprint protocol in java
The newest version!
package com.github.moaxcp.x11.protocol.xprint;
import com.github.moaxcp.x11.protocol.X11Input;
import com.github.moaxcp.x11.protocol.X11Output;
import com.github.moaxcp.x11.protocol.XReply;
import java.io.IOException;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class PrintGetScreenOfContextReply implements XReply {
public static final String PLUGIN_NAME = "xprint";
private short sequenceNumber;
private int root;
public static PrintGetScreenOfContextReply readPrintGetScreenOfContextReply(byte pad1,
short sequenceNumber, X11Input in) throws IOException {
PrintGetScreenOfContextReply.PrintGetScreenOfContextReplyBuilder javaBuilder = PrintGetScreenOfContextReply.builder();
int length = in.readCard32();
int root = in.readCard32();
in.readPad(20);
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.root(root);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(getResponseCode());
out.writePad(1);
out.writeCard16(sequenceNumber);
out.writeCard32(getLength());
out.writeCard32(root);
}
@Override
public int getSize() {
return 12;
}
public String getPluginName() {
return PLUGIN_NAME;
}
public static class PrintGetScreenOfContextReplyBuilder {
public int getSize() {
return 12;
}
}
}