Back to project page ShadowCraft_Android.
The source code is released under:
GNU General Public License
If you think the Android project ShadowCraft_Android 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.shadowcraft.android; /*from w ww. j a v a 2 s . c o m*/ import core.util.Tuple_2; public class Stat extends Tuple_2<Object, Object>{ public Stat (int first, double second) { super(first, second); } public int getId() { return (Integer) super.getFirst(); } public double getValue() { return (Double) super.getSecond(); } }