Examples of PathfinderCharacterCombatTraker


Examples of pathfinder.gui.adapter.PathfinderCharacterCombatTraker

    boolean contain = false;

    Iterator<CombatTrackerUnit> itt = units.iterator();

    while (itt.hasNext() && !contain) {
      PathfinderCharacterCombatTraker unit = (PathfinderCharacterCombatTraker) itt
          .next();
      if (unit.getCharacterId().equals(character.getId())) {
        contain = true;
      }
    }

    return contain;
View Full Code Here

Examples of pathfinder.gui.adapter.PathfinderCharacterCombatTraker

    return !containCharacter();
  }

  @Override
  public void doAction(int xOnScreen, int yOnScreen) throws Exception {
    PathfinderCharacterCombatTraker combat = new PathfinderCharacterCombatTraker(
        character.getId());
    CampaignClient.getInstance().addBean(combat);

    CampaignClient.getInstance().getCombatTraker().addUnit(combat.getId());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.