Back to project page SwitchTabs.
The source code is released under:
Apache License
If you think the Android project SwitchTabs 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.normal.testdemo.beans; //ww w . j a v a2 s .c o m import java.util.ArrayList; /** * Created by ex_chenjinghao on 2014/4/8. * json?????????????????? */ public class Hotels{ private String type; private int page; // ????????????hotel????? private ArrayList<Hotel> hotels; public String getType() { return type; } public void setType(String type) { this.type = type; } public int getPage() { return page; } public void setPage(int page) { this.page = page; } public ArrayList<Hotel> getHotels() { return hotels; } public void setHotels(ArrayList<Hotel> hotels) { this.hotels = hotels; } }