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; //w ww . j a v a2 s . c om public class Fishing { private int id; public int getId() { return id; } public void setId(int id) { this.id = id; } public Fishing() { } public Fishing(int id) { this.id = id; } }