/* * Created on 15.4.2004 */ package is.idega.idegaweb.golf.tournament.presentation; /** * Title: CloseTournamentWindow * Description: * Copyright: Copyright (c) 2004 * Company: idega Software * @author 2004 - idega team - <br><a href="mailto:gummi@idega.is">Gudmundur Agust Saemundsson</a><br> * @version 1.0 */ public class CloseTournamentWindow extends TournamentAdministratorWindow { /** * */ public CloseTournamentWindow() { this("TournamentAdmin",850,600); } /** * @param name * @param width * @param height */ public CloseTournamentWindow(String name, int width, int height) { super(name, width, height); this.setGolfClassToInstanciate(CloseTournament.class); } }