Hi guys,
I'm seeing something weird.
Here:
https://code.google.com/p/smartgwt/source/browse/trunk/main/src/com/smartgwt/client/widgets/tree/events/FolderDropEvent.java
the method getNodes is written as
but in smartgwtpro-3.1d 08 03.zip\smartgwtpro-3.1d\lib\smartgwt.jar\com\smartgwt\client\widgets\tree\events\FolderDropEvent.java
it is written as
How come these are different?
Is the correct version the first one?
thanks,
I'm seeing something weird.
Here:
https://code.google.com/p/smartgwt/source/browse/trunk/main/src/com/smartgwt/client/widgets/tree/events/FolderDropEvent.java
the method getNodes is written as
Code:
/**
* List of nodes being dropped
*
* @return List of nodes being dropped
*/
public native TreeNode[] getNodes() /*-{
var jsObj = this.@com.smartgwt.client.event.AbstractSmartEvent::jsObj;
return @com.smartgwt.client.widgets.tree.Tree::convertToTreeNodeArray(Lcom/google/gwt/core/client/JavaScriptObject;)(jsObj.nodes);
}-*/;
it is written as
Code:
/**
* List of nodes being dropped
*
* @return List of nodes being dropped
*/
public native TreeNode[] getNodes() /*-{
var jsObj = this.@com.smartgwt.client.event.AbstractSmartEvent::jsObj;
return jsObj.nodes;
}-*/;
Is the correct version the first one?
thanks,
Comment