Package pathfinder.bean.spell.filter

Examples of pathfinder.bean.spell.filter.SpellLevelComparator


  public SpellListModel(String classe, List<Spell> spells) {
    this.classe = classe;
    this.spells = new ArrayList<Spell>();
    this.spells.addAll(spells);

    comparator = new SpellLevelComparator(classe);
    values = new ArrayList<Spell>();
    refresh();
  }
View Full Code Here


  }

  public void setSpells(String classe, List<Spell> spells) {
    this.classe = classe;
    this.spells = new ArrayList<Spell>();
    comparator = new SpellLevelComparator(classe);
    this.spells.addAll(spells);
    values = new ArrayList<Spell>();
    refresh();
    this.fireIntervalRemoved(this, 0, getSize());
    this.fireContentsChanged(this, 0, getSize());
View Full Code Here

TOP

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

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.