Package barsuift.simLife.j2d.panel

Examples of barsuift.simLife.j2d.panel.MainPanel


     *
     * @param universe the new universe to display
     */
    public void changeUniverse(Universe universe) {
        mainPanel = null;
        mainPanel = new MainPanel(universe);
        setContentPane(mainPanel);
        validate();
    }
View Full Code Here


     *
     * @param universe the new universe to display
     */
    public void changeUniverse(UniverseContext universeContext) {
        mainPanel = null;
        mainPanel = new MainPanel(universeContext);
        setContentPane(mainPanel);
        validate();
    }
View Full Code Here

TOP

Related Classes of barsuift.simLife.j2d.panel.MainPanel

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.