org.zkoss.openlayers.strategy.Save Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zkopenlayers Show documentation
Show all versions of zkopenlayers Show documentation
ZK wrapper for OpenLayers 2
The newest version!
package org.zkoss.openlayers.strategy;
import java.util.Map;
/**
*
* @author Jakub Kudla (kubakudla)
*
*/
public class Save extends Strategy {
public Save() {
this(null);
}
public Save(Map options) {
super(options);
}
@Override
protected String getNativeClass() {
return "OpenLayers.Strategy.Save";
}
}