Java tutorial
/* * Meiji Choko Solver * Copyright 2008 and beyond, Kvin Ferrare. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.kevinferrare.meijiChokoSolver.run; import javax.swing.UIManager; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.kevinferrare.meijiChokoSolver.gui.SolverWindow; import org.kevinferrare.meijiChokoSolver.puzzle.Puzzle; /** * Runs the solver in interactive mode (with a GUI) * * @author Kvin Ferrare * */ public class GuiSolverStarter implements SolverStarter { private static Log log = LogFactory.getLog(GuiSolverStarter.class); @Override public void start(Puzzle puzzle) { log.debug("Starting in GUI mode"); //set the gui look and feel to the system instead of the java not so beautiful one try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (Exception e) { e.printStackTrace(); } new SolverWindow(puzzle); } }