lib/browser/GraphBrowser/Box.java
author bulwahn
Tue, 05 Apr 2011 09:38:23 +0200
changeset 42230 594480d25aaa
parent 33686 8e33ca8832b1
permissions -rw-r--r--
deriving bounded_forall instances in quickcheck_exhaustive

/***************************************************************************
  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;
  }
}