Package org.gnubridge.presentation.gui

Examples of org.gnubridge.presentation.gui.MainViewImpl


  private static void buildGui() throws InterruptedException, InvocationTargetException {
    SwingUtilities.invokeAndWait(new Runnable() {
      public void run() {
        Deal g = createSampleGame();
        MainViewImpl mainView = new MainViewImpl("Gnubridge Analysis Mode");
        AnalysisView pv = new AnalysisView(mainView);
        pv.show();
        mainView.show();
        pv.setGame(g, South.i());
        pv.setContract(new Bid(1, g.getTrump()));
        pv.setListener(new MockCardPlayedListener());
        pv.displayCurrentTrick();
View Full Code Here

TOP

Related Classes of org.gnubridge.presentation.gui.MainViewImpl

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.