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.DropZone;
12:
13: /**
14: * A TreePanel DropZone.
15: */
16: public class TreeDropZone extends DropZone {
17:
18: public TreeDropZone(JavaScriptObject jsObj) {
19: super (jsObj);
20: }
21:
22: private static TreeDropZone instance(JavaScriptObject jsObj) {
23: return new TreeDropZone(jsObj);
24: }
25: }
|