com.github.moaxcp.x11client.protocol.dri2.AttachFormat 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.dri2;
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 AttachFormat implements XStruct {
private int attachment;
private int format;
public static AttachFormat readAttachFormat(X11Input in) throws IOException {
int attachment = in.readCard32();
int format = in.readCard32();
AttachFormat.AttachFormatBuilder javaBuilder = AttachFormat.builder();
javaBuilder.attachment(attachment);
javaBuilder.format(format);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard32(attachment);
out.writeCard32(format);
}
@Override
public int getSize() {
return 8;
}
public static class AttachFormatBuilder {
public AttachFormat.AttachFormatBuilder attachment(Attachment attachment) {
this.attachment = (int) attachment.getValue();
return this;
}
public AttachFormat.AttachFormatBuilder attachment(int attachment) {
this.attachment = attachment;
return this;
}
public int getSize() {
return 8;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy