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

org.zkoss.openlayers.strategy.Strategy Maven / Gradle / Ivy

/* Strategy.java

{{IS_NOTE
	Purpose:
		
	Description:
		
	History:
		Jun 22, 2012 6:16:07 PM , Created by jumperchen
}}IS_NOTE

Copyright (C) 2012 Potix Corporation. All Rights Reserved.

{{IS_RIGHT
}}IS_RIGHT
 */
package org.zkoss.openlayers.strategy;

import java.util.Map;

import org.zkoss.openlayers.OLWidget;
import org.zkoss.openlayers.util.Function;
import static org.zkoss.openlayers.util.Helper.mergeMap;
import static org.zkoss.openlayers.util.Helper.pair;

/**
 * @author jumperchen
 * 
 */
public abstract class Strategy extends OLWidget {
	private Map _options;

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

	protected Map getOptions() {
		return _options;
	}

	protected Function newNativeObject() {
		return new Function(getNativeClass(), mergeMap(getOptions(),
					pair("uuid", getUuid())));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy