Subversion Repositories eFlore/Applications.del

Rev

Rev 101 | Rev 109 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
101 benjamin 1
package org.tela_botanica.del.client.composants.validation;
2
 
3
import org.tela_botanica.del.client.i18n.I18n;
4
 
5
import com.google.gwt.user.client.ui.HTML;
6
import com.google.gwt.user.client.ui.TextBox;
7
 
8
public class TextNotNullFormValidator extends AbstractTextFieldValidator {
9
 
10
	public TextNotNullFormValidator(TextBox textBox, HTML sideHTML) {
11
		super(textBox, sideHTML);
12
	}
13
 
14
	@Override
15
	public boolean validate() {
103 benjamin 16
		if (getTextBox().getText().length() >= 0 && !getTextBox().getText().equals("")) {
101 benjamin 17
			getSideHTML().setHTML("");
18
			return true;
103 benjamin 19
		} else {
20
			getSideHTML().setHTML("<font color='red'>" + I18n.getVocabulary().texteNonNull() + "</font>");
101 benjamin 21
			return false;
22
		}
23
	}
24
 
25
}