01: /*
02: * GWT-Ext Widget Library
03: * Copyright(c) 2007-2008, GWT-Ext.
04: * licensing@gwt-ext.com
05: *
06: * http://www.gwt-ext.com/license
07: */
08: package com.gwtext.client.core;
09:
10: /**
11: * Constants for various sides.
12: */
13: public class Side {
14:
15: public static Side TOP = new Side("t");
16: public static Side LEFT = new Side("l");
17: public static Side RIGHT = new Side("r");
18: public static Side BOTTOM = new Side("b");
19:
20: private String side;
21:
22: private Side(String side) {
23: this .side = side;
24: }
25:
26: public String getSide() {
27: return side;
28: }
29: }
|