
gnu.x11.ValueList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of escher Show documentation
Show all versions of escher Show documentation
Escher is a collection of libraries for X Window System written purely in Java.
The newest version!
package gnu.x11;
/** X value list. */
public class ValueList {
public static final int ALL = 0xffff;
public int bitmask;
public int [] data;
public ValueList (int count) {
data = new int [count];
}
public void clear () { bitmask = 0; }
public void aggregate (ValueList vl) {
for (int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy