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 * /*from w w w . ja v a2 s . c o 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 BikeStation extends Localisable implements Comparable<BikeStation> { private static int vert = Color.parseColor("#58BB01"); private static int orange = Color.parseColor("#F5A900"); private static int rouge = Color.parseColor("#DB0000"); public String id; public String name; public String address; public String district; public int state; public int slotsAvailable; public int bikesAvailable; public boolean carteCredit; public BikeStation() { super(); } public BikeStation(Parcel in) { id = in.readString(); name = in.readString(); address = in.readString(); district = in.readString(); state = in.readInt(); slotsAvailable = in.readInt(); bikesAvailable = in.readInt(); latitude = in.readDouble(); longitude = in.readDouble(); carteCredit = in.readInt() == 1; } private String toString = null; @Override public String toString() { if(toString == null) { toString = name + " " + AsciiUtils.convertNonAscii(name); } return toString; } @Override public int compareTo(BikeStation another) { return name.compareTo(another.name); } @Override public boolean equals(Object o) { BikeStation other = (BikeStation) o; return id != null ? id.equals(other.id) : other.id == null; } public int getBikeColor() { return bikesAvailable > 5 ? vert : bikesAvailable < 3 ? rouge : orange; } public int getSlotColor() { return slotsAvailable > 5 ? vert : slotsAvailable < 3 ? rouge : orange; } @Override public void writeToParcel(Parcel out, int flags) { out.writeString(id); out.writeString(name); out.writeString(address); out.writeString(district); out.writeInt(state); out.writeInt(slotsAvailable); out.writeInt(bikesAvailable); out.writeDouble(latitude); out.writeDouble(longitude); out.writeInt(carteCredit ? 1 : 0); } public static final Parcelable.Creator<BikeStation> CREATOR = new Parcelable.Creator<BikeStation>() { @Override public BikeStation createFromParcel(Parcel in) { return new BikeStation(in); } @Override public BikeStation[] newArray(int size) { return new BikeStation[size]; } }; }