--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/Tools/GraphBrowser/graphbrowser/Box.java Fri Jul 16 12:55:02 2021 +0200
@@ -0,0 +1,20 @@
+/***************************************************************************
+ 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 isabelle.graphbrowser;
+
+public class Box {
+ public int width;
+ public int height;
+
+ public Box(int w, int h) {
+ this.width = w;
+ this.height = h;
+ }
+}