| 
13970
 | 
     1  | 
/***************************************************************************
  | 
| 
74015
 | 
     2  | 
  Title:      graphbrowser/Box.java
  | 
| 
13970
 | 
     3  | 
  Author:     Gerwin Klein, TU Muenchen
  | 
| 
 | 
     4  | 
  | 
| 
 | 
     5  | 
  A box with width and height. Used instead of java.awt.Dimension for 
  | 
| 
 | 
     6  | 
  batch mode.
  | 
| 
 | 
     7  | 
  | 
| 
 | 
     8  | 
***************************************************************************/
  | 
| 
13968
 | 
     9  | 
  | 
| 
74015
 | 
    10  | 
package isabelle.graphbrowser;
  | 
| 
13968
 | 
    11  | 
  | 
| 
 | 
    12  | 
public class Box {
 | 
| 
 | 
    13  | 
  public int width;
  | 
| 
 | 
    14  | 
  public int height;
  | 
| 
 | 
    15  | 
  | 
| 
 | 
    16  | 
  public Box(int w, int h) {
 | 
| 
 | 
    17  | 
    this.width = w;
  | 
| 
 | 
    18  | 
    this.height = h;
  | 
| 
 | 
    19  | 
  }
  | 
| 
 | 
    20  | 
}
  |