コード例 #1
0
ファイル: QMWalkApp.java プロジェクト: yaoyongxin/csm
 /**
  * Comand line entry point.
  *
  * @param args
  */
 public static void main(String[] args) {
   SimulationControl control = SimulationControl.createApp(new QMWalkApp());
   control.addButton("resetData", "Reset Data");
 }
コード例 #2
0
ファイル: MaxwellApp.java プロジェクト: bozhink/Code-Chunks
 /**
  * Starts the Java application.
  *
  * @param args command line parameters
  */
 public static void main(String[] args) {
   SimulationControl.createApp(new MaxwellApp());
 }
コード例 #3
0
 /**
  * Starts the Java application.
  *
  * @param args command line parameters
  */
 public static void main(String[] args) {
   SimulationControl.createApp(new LorenzApp());
 }
コード例 #4
0
 public static void main(String[] args) {
   SimulationControl.createApp(new MonteCarloEstimatorApp());
 }