Package net.geco.model

Examples of net.geco.model.Club


  private Announcer announcer() {
    return geco().announcer();
  }
 
  public Club createClub(String name, String shortName) {
    Club club = factory().createClub();
    club.setName(name);
    club.setShortname(shortName);
    registry().addClub(club);
    announcer().announceClubsChanged();
    return club;
  }
View Full Code Here

TOP

Related Classes of net.geco.model.Club

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.