Back to project page wiki-contacts-android.
The source code is released under:
Apache License
If you think the Android project wiki-contacts-android 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 com.kahkong.wikicontacts.service; /* w ww. j av a2s . c o m*/ /** * * @author Poh Kah Kong * */ public interface ValidationService { public boolean isRequired(String text); public boolean isOrRequired(String[] texts); public boolean isValidEmail(String text); public boolean isValidUrl(String text); }