Package de.odysseus.calyxo.forms

Examples of de.odysseus.calyxo.forms.Matcher


   */
  Validator getValidator(MatchConfig config, Locale locale) {
    String key = getKey(config, locale);
    Validator validator = (Validator)validators.get(key);
    if (validator == null) {
      Matcher matcher = (Matcher)create(config);
      matcher.localize(locale);
      validator = new Validator.Match(config, matcher);
      if (matcher.isSharable()) {
        validators.put(key, validator);
      }
    }
    return validator;
  }
View Full Code Here

TOP

Related Classes of de.odysseus.calyxo.forms.Matcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.