Back to project page QBWebserviceDemo---Android.
The source code is released under:
Copyright (c) 2011 QBurst, http://qburst.com/ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redi...
If you think the Android project QBWebserviceDemo---Android 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.qburst.qbwebservice.models; /*from w ww. ja v a 2s . c o m*/ import java.util.ArrayList; public class QBResponseBean extends QBBaseBean { private String status; private ArrayList<QBWebserviceModel> subcategories; private String description; public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public ArrayList<QBWebserviceModel> getSubCat() { return subcategories; } public void setSubCat(ArrayList<QBWebserviceModel> subCat) { this.subcategories = subCat; } public String getDesc() { return description; } public void setDesc(String description) { this.description = description; } }