fix for ETICS

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/admin/vre-deploy@83075 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2013-10-13 09:19:26 +00:00
parent 5d3f6ea36f
commit cd71acca78
1 changed files with 4 additions and 10 deletions

View File

@ -45,7 +45,6 @@ import com.extjs.gxt.ui.client.widget.layout.RowData;
import com.extjs.gxt.ui.client.widget.layout.RowLayout; import com.extjs.gxt.ui.client.widget.layout.RowLayout;
import com.extjs.gxt.ui.client.widget.treepanel.TreePanel; import com.extjs.gxt.ui.client.widget.treepanel.TreePanel;
import com.google.gwt.core.client.GWT; import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.google.gwt.user.client.ui.AbstractImagePrototype; import com.google.gwt.user.client.ui.AbstractImagePrototype;
import com.google.gwt.user.client.ui.CellPanel; import com.google.gwt.user.client.ui.CellPanel;
import com.google.gwt.user.client.ui.HTML; import com.google.gwt.user.client.ui.HTML;
@ -56,9 +55,7 @@ public class CenterPanel extends ContentPanel {
* Create a remote service proxy to talk to the server-side Greeting service. * Create a remote service proxy to talk to the server-side Greeting service.
*/ */
private final VredeployerServiceAsync deployerService = GWT.create(VredeployerService.class); private final VredeployerServiceAsync deployerService = GWT.create(VredeployerService.class);
/**
*
*/
private Controller controller; private Controller controller;
/** /**
* *
@ -66,10 +63,7 @@ public class CenterPanel extends ContentPanel {
private CheckTimer checkTimer = null; private CheckTimer checkTimer = null;
private boolean showingSummary = false; private boolean showingSummary = false;
/**
*
* @param c -
*/
public CenterPanel(Controller c) { public CenterPanel(Controller c) {
controller = c; controller = c;
this.setHeading(""); this.setHeading("");
@ -245,7 +239,7 @@ public class CenterPanel extends ContentPanel {
else { else {
unmask(); unmask();
toShow = "<h3>" + desc.getName() + " is ready to be deployed.</h3>"; toShow = "<h3>" + desc.getName() + " is ready to be deployed.</h3>";
toShow += "<brÊ/><brÊ/>selected nodes:"; toShow += "<br/><br/>selected nodes:";
if (isCloudSelected) { if (isCloudSelected) {
toShow += "<p><img src=\""+ ImagesConstants.CLOUD_IMAGE + " \" /></p>"; toShow += "<p><img src=\""+ ImagesConstants.CLOUD_IMAGE + " \" /></p>";
@ -258,7 +252,7 @@ public class CenterPanel extends ContentPanel {
} }
toShow += "</ul></p>"; toShow += "</ul></p>";
} }
toShow += "<brÊ/><brÊ/>click create button to start the creation process"; toShow += "<br/><br/>click create button to start the creation process";
cp.add(new HTML(toShow, true)); cp.add(new HTML(toShow, true));
cp.addButton(new Button("Create", new SelectionListener<ButtonEvent>() { cp.addButton(new Button("Create", new SelectionListener<ButtonEvent>() {