Package View

Examples of View.LoginView


         super();
        this.set_display(Display.getDisplay(this)) ;
        this.set_gridOthello(new GridOthello(8));

        this.set_choiceGameView(new ChoiceGameView(_display, this));
        this.set_loginView(new LoginView(_display, this));
        this.set_listWaitingPlayerView(new ListWaitingPlayerView(_display, this));
        this.set_gridView(new GridView(_display, this));
    }
View Full Code Here


    public static void setIsVisibleFramerincipal(boolean visibleFormPrincipal) {
        GerenciadorOperacional.visibleFramePrincipal = visibleFormPrincipal;
    }

    public static LoginView getLogin() {
        login = new LoginView(new javax.swing.JFrame(), true);
        login.addWindowListener(new java.awt.event.WindowAdapter() {

            public void windowClosing(java.awt.event.WindowEvent e) {
                System.exit(0);
            }
View Full Code Here

         super();
        _display = Display.getDisplay(this);
        _othelloGrid = new OthelloGrid();
       
        _choiceGameView = new ChoiceGameView(_display, this);
        _loginView = new LoginView(_display, this);
        _listWaitingPlayerView = new ListWaitingPlayerView(_display, this);
        _gridView = new GridView(_display,_othelloGrid, this);
    }
View Full Code Here

TOP

Related Classes of View.LoginView

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.