Back to project page MapAlarmist.
The source code is released under:
Copyright 2013 Guilhem Vellut <guilhem@vellut.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), t...
If you think the Android project MapAlarmist 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.vellut.geoalarm; /* w w w . java 2s . c o m*/ import com.google.android.gms.maps.model.LatLngBounds; public class SavedLocation implements Comparable<SavedLocation> { public String description; public LatLngBounds zone; public SavedLocation() { } public SavedLocation(String description, LatLngBounds zone) { this.description = description; this.zone = zone; } @Override public String toString() { return description; } @Override public int compareTo(SavedLocation another) { return (this.description.compareTo(another.description)); } }