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

org.gwtopenmaps.openlayers.client.strategy.RefreshStrategy 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;

/**
 * 
 * @author Maciej Jezierski - Pinocchio
 *
 */
public class RefreshStrategy extends Strategy {

	public boolean activate() {
		return RefreshStrategyImpl.activate(this.getJSObject());
	}
	
	public boolean deactivate() {
		return RefreshStrategyImpl.deactivate(this.getJSObject());
	}
	
	public void refresh() {
		RefreshStrategyImpl.refresh(this.getJSObject());
	}
	
	public RefreshStrategy(JSObject strategy) {
		super(strategy);
	}
	
	public RefreshStrategy() {
		this(RefreshStrategyImpl.create());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy