Back to project page TipJarNinja.
The source code is released under:
GNU Lesser General Public License
If you think the Android project TipJarNinja 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 ninja.tipjar; // www . jav a2 s . c o m public class Split { int shares; float adjustment; float paid; public Split() { shares = 1; adjustment = 0; paid = 0; } }