Package

Source Code of UserInterface_Test

import javax.swing.JFrame;

import edu.gmu.seor.prognos.unbbayesplugin.cps.controller.CPSController;
import edu.gmu.seor.prognos.unbbayesplugin.cps.gui.CPSDialog.windowMode;


public class UserInterface_Test {

  public UserInterface_Test() {
  }

  public void run() {
     CPSController controller = new CPSController(windowMode.DMP, "DMP");
  }

 
  /**
   * @param args
   */
  public static void main(String[] args) {
    UserInterface_Test UI = new UserInterface_Test();
    UI.run();

  }

}
TOP

Related Classes of UserInterface_Test

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.