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

org.zkoss.openlayers.protocol.HTTP Maven / Gradle / Ivy

The newest version!
package org.zkoss.openlayers.protocol;

import java.util.Map;

import org.zkoss.openlayers.OLWidget;
import org.zkoss.openlayers.util.Function;

/**
 * 
 * @author Jakub Kudla (kubakudla)
 * 
 */
public class HTTP extends OLWidget {
	private Map _options;

	public HTTP(Map options) {
		_options = options;
	}

	@Override
	protected String getNativeClass() {
		return "OpenLayers.Protocol.HTTP";
	}

	@Override
	protected Function newNativeObject() {
		return new Function(getNativeClass(), _options);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy