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

javajs.awt.Dimension Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package javajs.awt;

public class Dimension {

  public int width;
  public int height;

  public Dimension(int w, int h) {
    set(w, h);
  }

  public Dimension set(int w, int h) {
    width = w;
    height = h;
    return this;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy