src/main/java/de/uapcore/sudoku/Sudoku.java

Wed, 26 Aug 2020 19:09:07 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 26 Aug 2020 19:09:07 +0200
changeset 25
569220009c54
parent 18
530f60fa3dc9
permissions
-rw-r--r--

fixes wrong call of assertEquals()

universe@3 1 /*
universe@3 2 * Copyright 2013 Mike Becker. All rights reserved.
universe@3 3 *
universe@3 4 * Redistribution and use in source and binary forms, with or without
universe@3 5 * modification, are permitted provided that the following conditions are met:
universe@3 6 *
universe@3 7 * 1. Redistributions of source code must retain the above copyright
universe@3 8 * notice, this list of conditions and the following disclaimer.
universe@3 9 *
universe@3 10 * 2. Redistributions in binary form must reproduce the above copyright
universe@3 11 * notice, this list of conditions and the following disclaimer in the
universe@3 12 * documentation and/or other materials provided with the distribution.
universe@3 13 *
universe@3 14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@3 15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@3 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@3 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@3 18 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@3 19 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@3 20 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@3 21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@3 22 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@3 23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@3 24 * POSSIBILITY OF SUCH DAMAGE.
universe@3 25 */
universe@3 26
universe@1 27 package de.uapcore.sudoku;
universe@1 28
universe@9 29 import javax.swing.*;
universe@9 30 import java.awt.*;
universe@1 31
universe@1 32 /**
universe@10 33 * Main class of the application.
universe@1 34 */
universe@2 35 public final class Sudoku extends JFrame {
universe@10 36
universe@10 37 /**
universe@10 38 * Constructs the Sudoku main window.
universe@10 39 */
universe@1 40 public Sudoku() {
universe@1 41 super("Sudoku");
universe@1 42
universe@2 43 Field f = new Field();
universe@2 44 ActionHandler h = new ActionHandler(f);
universe@18 45 setJMenuBar(new MainMenu(h));
universe@2 46
universe@3 47 Container content = getContentPane();
universe@1 48
universe@3 49 content.setLayout(new GridBagLayout());
universe@1 50 GridBagConstraints c = new GridBagConstraints();
universe@1 51 c.insets = new Insets(20, 20, 20, 20);
universe@2 52 c.fill = GridBagConstraints.HORIZONTAL;
universe@1 53
universe@1 54 c.gridx = 0; c.gridy = 0;
universe@3 55 content.add(f, c);
universe@2 56 c.gridy++;
universe@3 57 content.add(new ButtonPanel(h), c);
universe@1 58
universe@1 59 pack();
universe@3 60 content.setBackground(Color.WHITE);
universe@1 61 setLocationByPlatform(true);
universe@1 62 setDefaultCloseOperation(EXIT_ON_CLOSE);
universe@15 63 setMinimumSize(getSize());
universe@1 64 }
universe@1 65
universe@1 66 /**
universe@10 67 * Main method starting the Sudoku solver.
universe@10 68 *
universe@1 69 * @param args the command line arguments
universe@1 70 */
universe@1 71 public static void main(String[] args) {
universe@1 72 new Sudoku().setVisible(true);
universe@1 73 }
universe@1 74 }

mercurial