| Revision 523,
445 bytes
checked in by jdalbey, 6 years ago
(diff) |
|
RunSim?.java created to run all three apps (Server, Client, SimMgr?) together, for development and testing purposes. Updated configuration properties to remove obsolete entires and rename others for clarity.
|
| Line | |
|---|
| 1 | |
|---|
| 2 | package tmcsim; |
|---|
| 3 | |
|---|
| 4 | /** |
|---|
| 5 | * Run the CAD Server, Client, and Simulation Manager together. |
|---|
| 6 | * Used for development and testing. |
|---|
| 7 | * @author jdalbey |
|---|
| 8 | */ |
|---|
| 9 | public class RunSim |
|---|
| 10 | { |
|---|
| 11 | public static void main(String[] args) |
|---|
| 12 | { |
|---|
| 13 | tmcsim.cadsimulator.CADServer.main(args); |
|---|
| 14 | tmcsim.client.CADClient.main(args); |
|---|
| 15 | String[] scriptname ={"full_script_2016.xml"}; |
|---|
| 16 | tmcsim.simulationmanager.SimulationManager.main(scriptname); |
|---|
| 17 | } |
|---|
| 18 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.