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