Package org.patchca.word

Examples of org.patchca.word.RandomWordFactory


    cs.setWidth(width);
    cs.setHeight(height);
   
    int maxLength = NumberUtils.toInt(this.getInitParameter("maxLength"), MAX_LENGTH);
    int minLength = NumberUtils.toInt(this.getInitParameter("minLength"), MIN_LENGTH);
    RandomWordFactory wf = new RandomWordFactory();
    wf.setMaxLength(maxLength);
    wf.setMinLength(minLength);
   
    cs.setWordFactory(wf);
   
    ResourcePatternResolver rpr = new PathMatchingResourcePatternResolver();
    Resource resource = rpr.getResource("classpath:" + CACHE_FILE);
View Full Code Here

TOP

Related Classes of org.patchca.word.RandomWordFactory

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.