Package net.bnubot.bot.gui.wizard

Source Code of net.bnubot.bot.gui.wizard.NewProfileWizard

/**
* This file is distributed under the GPL
* $Id: NewProfileWizard.java 1824 2009-06-25 17:37:45Z scotta $
*/
package net.bnubot.bot.gui.wizard;

import net.bnubot.settings.ConnectionSettings;
import net.bnubot.settings.GlobalSettings;

/**
* @author scotta
*/
public class NewProfileWizard extends AbstractWizard {

  public static void main(String[] args) {
    GlobalSettings.load();
    new NewProfileWizard(new ConnectionSettings(1)).displayAndBlock();
    System.exit(0);
  }

  public NewProfileWizard(ConnectionSettings cs) {
    super("Create profile");
    addWizardPage(new AccountDetailsWizardPage("Battle.net Account", cs));
  }

  @Override
  public void finish() throws Exception {
    // Nothing to do
  }

}
TOP

Related Classes of net.bnubot.bot.gui.wizard.NewProfileWizard

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.