Package freecell.view.pile

Examples of freecell.view.pile.CascadingPilePanel


        }
        for (Foundation foundation : game.getFoundations()) {
            pilePanels.add(new StackedPilePanel(foundation));
        }
        for (Tableau tableau : game.getTableaux()) {
            pilePanels.add(new CascadingPilePanel(tableau));
        }
        super.setLayout(new GridBagLayout());
        super.setOpaque(false);
        addConstraints();
    }
View Full Code Here

TOP

Related Classes of freecell.view.pile.CascadingPilePanel

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.