Back to project page BikeStation.
The source code is released under:
GNU General Public License
If you think the Android project BikeStation 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.bikestation.app; /*ww w .jav a 2s .com*/ public class History { public String date; public String user; public String action; public History(String date, String user, String action){ this.date = date; this.user = user; this.action = action; } }