lib/browser/GraphBrowser/Box.java
author wenzelm
Fri, 28 Dec 2018 19:01:35 +0100
changeset 69526 5574d504cf36
parent 33686 8e33ca8832b1
permissions -rw-r--r--
more conservative update of Haskell stack (amending 04e54f57a869): 13.0 still lacks notable packages like "Agda" or "darcs";

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