/** * OpenKM, Open Document Management System (http://www.openkm.com) * Copyright (c) 2006-2011 Paco Avila & Josep Llort * * No bytes were intentionally harmed during the development of this application. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package com.openkm.frontend.client.util.validator; import com.google.gwt.user.client.ui.SuggestBox; import com.google.gwt.user.client.ui.TextBoxBase; import eu.maydu.gwt.validation.client.ValidationAction; import eu.maydu.gwt.validation.client.ValidationResult; import eu.maydu.gwt.validation.client.Validator; import eu.maydu.gwt.validation.client.ValidationResult.ValidationError; import eu.maydu.gwt.validation.client.i18n.StandardValidationMessages; import eu.maydu.gwt.validation.client.i18n.ValidationMessages; /** * StringLtValidator * * @author jllort * */ public class StringLtValidator extends Validator<StringLtValidator> { protected TextBoxBase text; protected SuggestBox suggest; protected String value; public StringLtValidator(TextBoxBase text) { this(text, false); } public StringLtValidator(TextBoxBase text, String value) { this(text, value, false); } public StringLtValidator(TextBoxBase text, boolean preventsPropagationOfValidationChain) { this(text, preventsPropagationOfValidationChain, null); } public StringLtValidator(TextBoxBase text, boolean preventsPropagationOfValidationChain, String customMsgKey) { super(); this.setPreventsPropagationOfValidationChain(preventsPropagationOfValidationChain); if(text == null) throw new IllegalArgumentException("text must not be null"); this.text = text; this.setCustomMsgKey(customMsgKey); } public StringLtValidator(TextBoxBase text, String value, boolean preventsPropagationOfValidationChain) { this(text, value, preventsPropagationOfValidationChain, null); } public StringLtValidator(TextBoxBase text, String value, boolean preventsPropagationOfValidationChain, String customMsgKey) { super(); this.setPreventsPropagationOfValidationChain(preventsPropagationOfValidationChain); if(text == null) throw new IllegalArgumentException("text must not be null"); this.text = text; setValue(value); this.setCustomMsgKey(customMsgKey); } public StringLtValidator(SuggestBox suggest) { this(suggest, false); } public StringLtValidator(SuggestBox suggest, boolean preventsPropagationOfValidationChain) { this(suggest, preventsPropagationOfValidationChain, null); } public StringLtValidator(SuggestBox suggest, boolean preventsPropagationOfValidationChain, String customMsgKey) { super(); this.setPreventsPropagationOfValidationChain(preventsPropagationOfValidationChain); if(suggest == null) throw new IllegalArgumentException("suggest must not be null"); this.suggest = suggest; this.setCustomMsgKey(customMsgKey); } @Override public ValidationResult validate(ValidationMessages allMessages) { StandardValidationMessages messages = allMessages.getStandardMessages(); String str; if(text != null) str = text.getText(); else str = suggest.getText(); if(str == null) str = ""; if(value.compareTo(str)<=0) { ValidationResult result = new ValidationResult(); ValidationError error = result.new ValidationError(null, getErrorMessage(allMessages, messages.validator_max())); result.getErrors().add(error); return result; } return null; } public void invokeActions(ValidationResult result) { if(text != null) { for(ValidationAction<TextBoxBase> action : getFailureActions()) action.invoke(result, text); }else { for(ValidationAction<SuggestBox> action : getFailureActions()) action.invoke(result, suggest); } } public StringLtValidator setValue(String value) { this.value = value; return this; } }