Package ipm.gerdc.baccarat.page

Examples of ipm.gerdc.baccarat.page.InfoPage


  }

  public void switchPage(String page) {
    try {
      setPageName(page);
      InfoPage infoPage = (InfoPage) Class.forName(page).newInstance();
      infoPage.buildPage(this);
      frm.getContentPane().removeAll();
      frm.getContentPane().add(infoPage, BorderLayout.CENTER);
      frm.setVisible(false);
      frm.setVisible(true);
      MemoryControl.runGC();
View Full Code Here

TOP

Related Classes of ipm.gerdc.baccarat.page.InfoPage

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.