package org.semanticsoft.commons.geom; /** * Side values from eclipse model's SideValue for using in client and server * @author rushan * */ public class Side { public static final Integer TOP = 0; public static final Integer BOTTOM = 1; public static final Integer LEFT = 2; public static final Integer RIGHT = 3; public static final Integer CENTER = 100; }