de.swm.gwt.client.superdev.SuperDevModeHelperOnDefaultImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swm-gwt-client Show documentation
Show all versions of swm-gwt-client Show documentation
Plain GWT Swm erweiterungen, auch zur benutzung in mobilen Geraeten
The newest version!
package de.swm.gwt.client.superdev;
import com.google.gwt.user.client.Window;
public class SuperDevModeHelperOnDefaultImpl extends SuperDevModeHelperOnImpl{
@Override
protected String getServerUrl() {
String protocol = Window.Location.getProtocol();
String hostName = Window.Location.getHostName();
return protocol + "//" + hostName + ":9876/";
}
}