lib/browser/GraphBrowser/Box.java
author bulwahn
Thu, 27 Oct 2011 13:50:54 +0200
changeset 45272 5995ab88a00f
parent 33686 8e33ca8832b1
permissions -rw-r--r--
respecting isabelle's programming style in the quotient package by simplifying quotdata_lookup function for data access

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