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

org.gwtopenmaps.openlayers.client.handler.HandlerOptions Maven / Gradle / Ivy

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

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

public class HandlerOptions extends JSObjectWrapper {

	protected HandlerOptions(JSObject jsObject) {
		super(jsObject);
	}

	/**
	 * 
	 * @param keyMask Use bitwise operators and one or more of the OpenLayers.Handler constants to construct a keyMask.
	 */
	public void setKeyMask(int keyMask) {
		getJSObject().setProperty("keyMask", keyMask);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy