Package pathfinder.bean.spell.filter

Examples of pathfinder.bean.spell.filter.MinLevelListFilter


    String className = getSelectedClasse();
    Integer minLevel = (Integer) spinnerMin.getValue();
    Integer maxLevel = (Integer) spinnerMax.getValue();

    CompositeListFilter<Spell> filter = new CompositeListFilter<Spell>();
    filter.addFilter(new MinLevelListFilter(className, minLevel));
    filter.addFilter(new MaxLevelListFilter(className, maxLevel));

    return filter;
  }
View Full Code Here

TOP

Related Classes of pathfinder.bean.spell.filter.MinLevelListFilter

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.