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

org.gwtopenmaps.openlayers.client.strategy.RefreshStrategyImpl Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.gwtopenmaps.openlayers.client.strategy;

import org.gwtopenmaps.openlayers.client.util.JSObject;

public class RefreshStrategyImpl {

	public native static JSObject create() /*-{
		return $wnd.OpenLayers.Strategy.Refresh();
	}-*/;

	public native static boolean activate(JSObject self) /*-{
		return self.activate();
	}-*/;

	public native static boolean deactivate(JSObject self) /*-{
		return self.deactivate();
	}-*/;

	public native static void refresh(JSObject self) /*-{
		self.refresh();
	}-*/;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy