Package ch.fusun.baron.player.api

Examples of ch.fusun.baron.player.api.CountryUpdate


  }

  @Override
  public DataUpdate createFullUpdate() {
    synchronized (countries) {
      return new CountryUpdate(countries);
    }
  }
View Full Code Here


  @Override
  public void setCountries(Map<String, Country> countries) {
    synchronized (countries) {
      this.countries = countries;
      updateAllListeners(new CountryUpdate(countries));
    }
  }
View Full Code Here

TOP

Related Classes of ch.fusun.baron.player.api.CountryUpdate

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.