Examples of MainViewImpl


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

Examples of org.mbhcare.client.view.MainViewImpl

  private MainPresenter mainPresenter;
  private LoginPresenter loginPresenter;
  private HomePresenter homePresenter;
 
  public AppController() {
    mainPresenter = new MainPresenter(new MainViewImpl());
    loginPresenter = new LoginPresenter(new LoginViewImpl());
    homePresenter = new HomePresenter(new HomeViewImpl());
   
    bind();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.