13970
|
1 |
/***************************************************************************
|
|
2 |
Title: GraphBrowser/Box.java
|
|
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 |
|
|
10 |
package GraphBrowser;
|
|
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 |
}
|