com.github.moaxcp.x11client.protocol.randr.ProviderProperty 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.randr;
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 ProviderProperty implements NotifyDataUnion, XStruct {
private int window;
private int provider;
private int atom;
private int timestamp;
private byte state;
public static ProviderProperty readProviderProperty(X11Input in) throws IOException {
int window = in.readCard32();
int provider = in.readCard32();
int atom = in.readCard32();
int timestamp = in.readCard32();
byte state = in.readCard8();
in.readPad(11);
ProviderProperty.ProviderPropertyBuilder javaBuilder = ProviderProperty.builder();
javaBuilder.window(window);
javaBuilder.provider(provider);
javaBuilder.atom(atom);
javaBuilder.timestamp(timestamp);
javaBuilder.state(state);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard32(window);
out.writeCard32(provider);
out.writeCard32(atom);
out.writeCard32(timestamp);
out.writeCard8(state);
out.writePad(11);
}
@Override
public int getSize() {
return 28;
}
public static class ProviderPropertyBuilder {
public int getSize() {
return 28;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy