All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.swm.gwt.client.superdev.SuperDevModeHelperOnDefaultImpl Maven / Gradle / Ivy

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/";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy