Package org.strecks.validator.annotation

Examples of org.strecks.validator.annotation.ValidateDate


public class ValidateDateFactory extends BaseFactory
{

  public ValidatorWrapper create(Annotation annot, Method method)
  {
    ValidateDate annotation = (ValidateDate) annot;
    final String key = annotation.key();
    final int order = annotation.order();
    final Class clazz = annotation.implementationClass();

    DateValidator validator = createDateValidator(clazz);

    return create(validator, key, order, new ArrayList<Object>(), method);
  }
View Full Code Here

TOP

Related Classes of org.strecks.validator.annotation.ValidateDate

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.