Back to project page Go2-Rennes.
The source code is released under:
GNU General Public License
If you think the Android project Go2-Rennes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/******************************************************************************* * Copyright (c) 2011 Michel DAVID mimah35-at-gmail.com * //w w w . ja v a 2 s.co m * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. ******************************************************************************/ package fr.gotorennes.domain; import fr.gotorennes.util.AsciiUtils; import android.graphics.Color; import android.os.Parcel; import android.os.Parcelable; public class RelayPark extends Localisable implements Comparable<RelayPark> { private static int vert = Color.parseColor("#58BB01"); private static int orange = Color.parseColor("#F5A900"); private static int rouge = Color.parseColor("#DB0000"); public String name; public int state; public int available; public int capacity; public RelayPark() { super(); } public RelayPark(Parcel in) { name = in.readString(); state = in.readInt(); available = in.readInt(); capacity = in.readInt(); latitude = in.readDouble(); longitude = in.readDouble(); } private String toString = null; @Override public String toString() { if(toString == null) { toString = name + " " + AsciiUtils.convertNonAscii(name); } return toString; } public int getColor() { return available > 50 ? vert : available < 20 ? rouge : orange; } @Override public boolean equals(Object o) { RelayPark other = (RelayPark) o; return name != null ? name.equals(other.name) : other.name == null; } @Override public void writeToParcel(Parcel out, int flags) { out.writeString(name); out.writeInt(state); out.writeInt(available); out.writeInt(capacity); out.writeDouble(latitude); out.writeDouble(longitude); } public static final Parcelable.Creator<RelayPark> CREATOR = new Parcelable.Creator<RelayPark>() { public RelayPark createFromParcel(Parcel in) { return new RelayPark(in); } public RelayPark[] newArray(int size) { return new RelayPark[size]; } }; @Override public int compareTo(RelayPark another) { return name.compareTo(another.name); } }