All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gnu.x11.ValueList Maven / Gradle / Ivy

Go to download

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