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 ww w .ja v a 2s .c o m /** * Created with IntelliJ IDEA. * User: marcus * Interface used by the validation factory to listen to */ public interface ConstrainedView<T> { T getCurrentValue(); String getValidators(); }