lib/browser/GraphBrowser/Box.java
author wenzelm
Sun, 27 Jul 2014 15:40:19 +0200
changeset 57821 f11f3d7589b1
parent 33686 8e33ca8832b1
permissions -rw-r--r--
Added tag Isabelle2014-RC1 for changeset c0fd03d13d28

/***************************************************************************
  Title:      GraphBrowser/Box.java
  Author:     Gerwin Klein, TU Muenchen

  A box with width and height. Used instead of java.awt.Dimension for 
  batch mode.

***************************************************************************/

package GraphBrowser;

public class Box {
  public int width;
  public int height;

  public Box(int w, int h) {
    this.width = w;
    this.height = h;
  }
}