lib/browser/GraphBrowser/Box.java
author krauss
Fri, 30 Apr 2010 13:47:39 +0200
changeset 36547 2a9d0ec8c10d
parent 33686 8e33ca8832b1
permissions -rw-r--r--
return updated info record after termination proof

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