lib/browser/GraphBrowser/Box.java
author blanchet
Tue, 11 Sep 2012 13:06:13 +0200
changeset 49273 f839ce127a2e
parent 33686 8e33ca8832b1
permissions -rw-r--r--
reverted "id" change: The problem is rather that the "%c. f c" argument sometimes gets eta-reduced

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