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 .j av a 2 s.co m public class Fish { private int fishSpeciesId; private double weight; public int getFishSpeciesId() { return fishSpeciesId; } public void setFishSpeciesId(int fishSpeciesId) { this.fishSpeciesId = fishSpeciesId; } public double getWeight() { return weight; } public void setWeight(double weight) { this.weight = weight; } }