lib/browser/GraphBrowser/Box.java
author wenzelm
Sun, 06 Nov 2011 16:41:53 +0100
changeset 45359 157e74588c49
parent 33686 8e33ca8832b1
permissions -rw-r--r--
write changed .prv files only, to avoid writing into src file-space by default;

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