Package sudoku.Vista

Examples of sudoku.Vista.SeleccionVista


public class ControladorSeleccionarVista implements ActionListener{
    private SudokuControlador sdkControlador;
    private SeleccionVista seleccionaVista;
   
    public ControladorSeleccionarVista(){
        seleccionaVista = new SeleccionVista();
        seleccionaVista.setController(this);
        seleccionaVista.setVisible(true);
    }
View Full Code Here

TOP

Related Classes of sudoku.Vista.SeleccionVista

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.