Package mage.view

Examples of mage.view.MatchView


            if (table.getState() != TableState.FINISHED) {
                tableList.add(new TableView(table));
            }
            else if (matchList.size() < 50) {
                 if (table.isTournament()) {
                    matchList.add(new MatchView(table));
                } else {
                    matchList.add(new MatchView(table));
                }
            } else {
                // more since 50 matches finished since this match so remove it
                if (table.isTournament()) {
                    TournamentManager.getInstance().removeTournament(table.getTournament().getId());
View Full Code Here

TOP

Related Classes of mage.view.MatchView

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.