Examples of BalanceSheet


Examples of ch.sahits.game.openpatrician.model.impl.BalanceSheet

    this.player=player;
    this.city = city;
    this.baseValue = value;
    this.weapons = new WeaponStorage();
    this.storage = new Storage(player, city);
    lastWeek = new BalanceSheet(city, player);
    currentWeek = new BalanceSheet((BalanceSheet) lastWeek);
    currentWeek.startUpdate();
    new PeriodicalTimeUpdater(EUpdateIntervalRegistration.WEEK, this);
  }
View Full Code Here

Examples of ch.sahits.game.openpatrician.model.impl.BalanceSheet


  @Override
  public void notify(DateObject date) {
    this.currentWeek.startUpdate();
    IBalanceSheet newWeek = new BalanceSheet((BalanceSheet) currentWeek);
    newWeek.startUpdate();
    this.lastWeek = this.currentWeek;
    this.currentWeek = newWeek;   
  }
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.