Back to project page sami-android-demo.
The source code is released under:
Apache License
If you think the Android project sami-android-demo 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 io.samsungsami.androidclient; //www . jav a2 s.co m public class Item { private String itemId; private String description; public Item(String itemId, String description) { super(); this.itemId = itemId; this.description = description; } public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }