Package com.main.gui

Examples of com.main.gui.JPrincipal


    public static JPrincipal getPrincipal() {
        if (principal == null) {
            carregandoDebug("Principal");
            try {
                principal = new JPrincipal(Carregador.getMe());
            } catch (Exception ex) {
                ex.printStackTrace(System.err);
                principal = new JPrincipal(Carregador.getMe());
            }
            Rectangle rectangle = Configuracoes.LOCAL_PRINCIPAL.getValor();
            if (rectangle != null) {
                principal.setBounds(rectangle);
            }
View Full Code Here

TOP

Related Classes of com.main.gui.JPrincipal

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.