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.tree;
09:
10: import com.google.gwt.core.client.JavaScriptObject;
11: import com.gwtext.client.dd.DragZone;
12:
13: /**
14: * A TreePanel drag zone.
15: *
16: */
17: public class TreeDragZone extends DragZone {
18:
19: public TreeDragZone(JavaScriptObject jsObj) {
20: super (jsObj);
21: }
22:
23: private static TreeDragZone instance(JavaScriptObject jsObj) {
24: return new TreeDragZone(jsObj);
25: }
26: }
|