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.widgets.layout;
09:
10: import com.google.gwt.core.client.JavaScriptObject;
11:
12: /**
13: * Inherits the anchoring of {@link AnchorLayout} and adds the ability for x/y positioning using the standard x and y component config options.
14: */
15: public class AbsoluteLayout extends AnchorLayout {
16:
17: protected native JavaScriptObject create(JavaScriptObject config) /*-{
18: return new $wnd.Ext.layout.AbsoluteLayout(config);
19: }-*/;
20: }
|