lib/browser/GraphBrowser/Box.java
author wenzelm
Tue, 29 Apr 2014 21:11:24 +0200
changeset 56793 d5ab6a8799ce
parent 33686 8e33ca8832b1
permissions -rw-r--r--
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;

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