Back to project page CustomersChoice.
The source code is released under:
Apache License
If you think the Android project CustomersChoice 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.alosdev.android.customerschoice.reporter; //w ww .j a v a 2 s .c o m import de.alosdev.android.customerschoice.Variant; /** * This implementation of {@link Reporter} does nothing else then fulfilling the interface. * @author Hasan Hosgel * */ public class NoReporter implements Reporter { @Override public void startVariant(Variant variant) { // do nothing } @Override public void reachesGoal(Variant variant) { // do nothing } }