Package interfaz.utilidades

Examples of interfaz.utilidades.Pizarra


        cargarAnimacion();
        this.pack();
    }

    public void cargarAnimacion() {
        this.pizarra = new Pizarra(this.mapaDatos);
        jPanelPizarraPanel.setLayout(new BorderLayout());
        jPanelPizarraPanel.setSize(700, 500);
        jPanelPizarraPanel.setPreferredSize(new Dimension(700, 500));
        jPanelPizarraPanel.add(this.pizarra, BorderLayout.CENTER);
    }
View Full Code Here

TOP

Related Classes of interfaz.utilidades.Pizarra

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.