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.errorhandling; //from w w w. ja v a 2 s . c o m import android.view.View; /** * Created with IntelliJ IDEA. * User: marcus * Date: 25.09.13 * Time: 17:47 * <p/> * Interface for bridging baracus error handling onto normal android * error messaging. This technique mostly relies on the type (@see TextEditErrorHandler) */ public interface StandardErrorHandler extends ErrorHandler { /** * returns true, if the implementation class is able to make standard error * handling on the passed view * * @param v - the view ask for * @return true, if the handler is able to handle the passed component */ public boolean canHandleView(View v); }