Back to project page baracus-framework.
The source code is released under:
Apache License
If you think the Android project baracus-framework 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 net.mantucon.baracus.validation; /*from w ww . j a v a 2 s .co m*/ /** * Created with IntelliJ IDEA. * User: marcus * Date: 02.10.13 * Time: 05:30 * <p/> * Interface indicating, that a view has got a validation callback. implement this * in your view in order to receive validation callbacks (e.g. to manage validation- * dependent visibility like enabling an OK-Button etc). */ public interface ValidatableView { /** * Method callback for validateable views. Let your activity or fragment implement * and register it for validation like usual using the ApplicationContext. * If Baracus detects the implementation of this interface, the callback will be * fired on each validation. */ public void onValidation(); }