src/Tools/GraphBrowser/graphbrowser/Box.java
changeset 74015 12b1f4649ab1
parent 74011 1d366486a812
equal deleted inserted replaced
74014:3b8b1da2ff29 74015:12b1f4649ab1
       
     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 ***************************************************************************/
       
     9 
       
    10 package isabelle.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 }