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: * CSS Positioning constants.
12: */
13: public class Positioning {
14:
15: public static Positioning RELATIVE = new Positioning("relative");
16: public static Positioning ABSOLUTE = new Positioning("absolute");
17: public static Positioning FIXED = new Positioning("fixed");
18:
19: private String positioning;
20:
21: private Positioning(String positioning) {
22: this .positioning = positioning;
23: }
24:
25: public String getPositioning() {
26: return positioning;
27: }
28: }
|