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: * This is a multi-pane, application-oriented UI layout style that supports multiple nested panels, automatic split bars
14: * between regions and built-in expanding and collapsing of regions.
15: *
16: * @see com.gwtext.client.widgets.layout.BorderLayoutData
17: */
18: public class BorderLayout extends ContainerLayout {
19:
20: protected native JavaScriptObject create(JavaScriptObject config) /*-{
21: return new $wnd.Ext.layout.BorderLayout(config);
22: }-*/;
23: }
|