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; /*from w ww . j a va 2s . c o m*/ import de.alosdev.android.customerschoice.CustomersChoice; import de.alosdev.android.customerschoice.Variant; import de.alosdev.android.customerschoice.logger.Logger; /** * This interface allows to use pluggable {@link Reporter}. The default implementation is the {@link NoReporter}. * If you want to use the {@link Logger}, you can configure the {@link LogReporter} in the * {@link CustomersChoice#addReporters(Reporter...)}. * * @author Hasan Hosgel * */ public interface Reporter { void startVariant(Variant variant); void reachesGoal(Variant variant); }