Back to project page on-the-hook.
The source code is released under:
MIT License
If you think the Android project on-the-hook 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.yoandinkov.onthehook.models; /*from www . ja v a 2s. co m*/ public class FishButton { private int id; private String name; private String pictureUrl; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getPictureUrl() { return pictureUrl; } public void setPictureUrl(String pictureUrl) { this.pictureUrl = pictureUrl; } public String getName() { return name; } public void setName(String name) { this.name = name; } }