Back to project page android.
The source code is released under:
Apache License
If you think the Android project android 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.github.digin.android.models.map; // w ww.j a va 2 s. co m import java.util.LinkedList; import java.util.List; /** * Bounds around a location. * Created by mike on 8/10/14. */ public class Bounds { private String name; private List<BoundPoint> bounds; public Bounds() { this.bounds = new LinkedList<BoundPoint>(); } public String getName() { return name; } public void setName(String name) { this.name = name; } public List<BoundPoint> getBounds() { return bounds; } public void setBounds(List<BoundPoint> bounds) { this.bounds = bounds; } }