Back to project page AndroidCodeExamples.
The source code is released under:
MIT License
If you think the Android project AndroidCodeExamples 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.jeffinmadison.simpleactivity; // w w w .java2 s . c o m /** * Created by Jeff on 6/11/2014. * Copyright JeffInMadison.com 2014 */ public class Foo { public static String bar(int i, int j) { return String.valueOf(i) + String.valueOf(j); } }