Back to project page WarDroid.
The source code is released under:
MIT License
If you think the Android project WarDroid 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.deathsnacks.wardroid.gson.alert; // w w w. j av a 2s .c o m /** * Created by Admin on 27/01/14. */ public class CountedItem { public String getItemType() { return ItemType; } public void setItemType(String itemType) { ItemType = itemType; } public int getItemCount() { return ItemCount; } public void setItemCount(int itemCount) { ItemCount = itemCount; } private String ItemType; private int ItemCount; }