Back to project page student_travel_app.
The source code is released under:
Apache License
If you think the Android project student_travel_app 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.piasy.simpletravel.model; /*from w w w .j a v a 2 s. c o m*/ public class ListViewItems { int size = 1; //button?????? String recordTime = null, recordLong = null, recordLat = null, recordPlace = null; String recordImage = null; String recordState = null; public ListViewItems() {} public void setItemTypeOne(String recordTime, String recordLong, String recordLat, String recordPlace) { this.recordTime = recordTime; this.recordPlace = recordPlace; this.recordLong = recordLong; this.recordLat = recordLat; size ++; } public void setItemTypeTwo(String recordImage) { this.recordImage = recordImage; size ++; } public void setItemTypeThree(String recordState) { this.recordState = recordState; size ++; } public int size() { return size; } public String getLong() { return recordLong; } public String getLat() { return recordLat; } public String getPlace() { return recordPlace; } public String getImage() { return recordImage; } public String getState() { return recordState; } public String getTime() { return recordTime; } }