Back to project page roboject.
The source code is released under:
Apache License
If you think the Android project roboject 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 de.akquinet.android.robojecttest.services; //from w w w. j a va2s .co m import de.akquinet.android.robojecttest.fragments.InjectNonAndroidServiceTestFragment; public class AdderFragmentImplementation implements InjectNonAndroidServiceTestFragment.AdderInterface { @Override public int add(int... params) { int result = 0; for (int param : params) { result += param; } return result; } }