Back to project page zmap.
The source code is released under:
GNU Lesser General Public License
If you think the Android project zmap listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.zmap.geom; public interface IGeomCollection<T> extends Iterable<T> { public int size(); public T get(int index); public int add(T geom); public T remove(int index); public void insert(T geom, int index); }