X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fcore%2FBox.java;h=16bae8585e0443d36ae11e1e0b62b8bd05532daa;hp=17323c1108082a97108800d7f2fd1e5419015aba;hb=297fdbde87e6db4732448a0950d1141c7265c169;hpb=2ea4142ec6959e6663f83ab23a26bb202ffce226 diff --git a/src/org/ibex/core/Box.java b/src/org/ibex/core/Box.java index 17323c1..16bae85 100644 --- a/src/org/ibex/core/Box.java +++ b/src/org/ibex/core/Box.java @@ -118,6 +118,10 @@ public final class Box extends JS.Obj implements Callable { public int maxwidth = Integer.MAX_VALUE; public int minheight = 0; public int maxheight = Integer.MAX_VALUE; + public int minwidth() { return minwidth; } + public int minheight() { return minheight; } + public int maxwidth() { return maxwidth; } + public int maxheight() { return maxheight; } private short rows = 1; private short cols = 0; private short rowspan = 1;