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

gnu.x11.extension.render.Picture 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.extension.render;

import gnu.x11.Display;
import gnu.x11.Resource;

/**
 * A simple picture. This is used in the render extension for solid colors.
 *
 * @see Render#create_solid_fill
 */
public class Picture extends Resource
{
  /**
   * A null picture.
   *
   * @see gnu.x11.Window#NONE
   */
  public static final Picture NONE = new Picture (0);

  private Picture (int id) {
    super (id);
  }

  /**
   * Creates a new Picture object.
   *
   * @param display the display to connect to
   */
  Picture (Display display) {
    super (display);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy