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

org.zkoss.openlayers.geometry.LinearRing Maven / Gradle / Ivy

/* LinearRing.java

{{IS_NOTE
	Purpose:
		
	Description:
		
	History:
		Jun 23, 2012 8:58:51 PM , Created by jumperchen
}}IS_NOTE

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

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

import java.util.List;

/**
 * @author jumperchen
 *
 */
public class LinearRing extends LineString {

	public LinearRing(List components) {
		super(components);
	}

	@Override
	protected String getNativeClass() {
		return "OpenLayers.Geometry.LinearRing";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy