updated to gwt 2.7.0

git-svn-id: http://svn.d4science-ii.research-infrastructures.eu/gcube/trunk/portlets/user/workspace-tree-widget@101819 82a268e6-3cf1-43bd-a215-b396298e98cf
task/19600
Francesco Mangiacrapa 10 years ago
parent 749ffff308
commit 33a485289b

@ -67,6 +67,8 @@
<artifactId>gxt2.2.5-gwt2.X</artifactId>
<version>2.7.0</version>
<scope>compile</scope>
<!-- <scope>system</scope> -->
<!-- <systemPath>/home/francesco-mangiacrapa/wseclipse/gxt2.2.5-gwt2.X/target/gxt2.2.5-gwt2.X.jar</systemPath> -->
</dependency>
<!-- PORTAL MANAGER -->
@ -152,6 +154,12 @@
<artifactId>home-library</artifactId>
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>asm-all</artifactId>
<groupId>asm</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>

@ -174,12 +174,13 @@ import com.google.gwt.user.client.ui.HasWidgets;
*/
public class AppControllerExplorer implements EventHandler, TreeAppControllerInterface{
public static final GWTWorkspaceServiceAsync rpcWorkspaceService = (GWTWorkspaceServiceAsync) GWT.create(GWTWorkspaceService.class);
private ExplorerPanel explorerPanel;
private final static HandlerManager eventBus = new HandlerManager(null);
private HashMap<EventsTypeEnum, ArrayList<SubscriberInterface>> subscribers = null;
private boolean selectRootItem;
private FileUploader fileUploader;
public static String myLogin;
@ -193,6 +194,7 @@ public class AppControllerExplorer implements EventHandler, TreeAppControllerInt
bind();
singleton = this;
}
public static AppControllerExplorer getInstance() {
return singleton;

@ -217,4 +217,6 @@ public class ConstantsExplorer {
//PROPERTY
public static final String SPECIALFOLDERNAME = "SPECIALFOLDERNAME";
public static final String SPECIALFOLDERNAMEPROPERTIESFILE = "specialfoldername.properties";
}

@ -29,5 +29,6 @@ public class TreeAsync implements EntryPoint {
//UNCOMMENT FOLLOWING TO USE ONLY TREE
// AppControllerExplorer appController = new AppControllerExplorer();
// appController.go(RootPanel.get("treePanelWs"), true);
}
}

Loading…
Cancel
Save