- Timestamp:
- 10/15/2017 04:30:50 PM (9 years ago)
- Location:
- trunk/src/tmcsim
- Files:
-
- 3 edited
- 1 moved
-
application.properties (modified) (1 diff)
-
cadsimulator/viewer/CADServerViewer.java (moved) (moved from trunk/src/tmcsim/cadsimulator/viewer/CADSimulatorViewer.java) (3 diffs)
-
cadsimulator/viewer/actions/ExitAction.java (modified) (2 diffs)
-
client/CADClientView.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/tmcsim/application.properties
r123 r124 1 #Sun, 15 Oct 2017 17: 03:46-07001 #Sun, 15 Oct 2017 17:38:51 -0700 2 2 3 Application.revision=12 23 Application.revision=123 4 4 5 Application.buildnumber=5 25 Application.buildnumber=53 -
trunk/src/tmcsim/cadsimulator/viewer/CADServerViewer.java
r49 r124 25 25 /** 26 26 * This class provides a GUI to view current status information for the CAD 27 * S imulator.27 * Server. 28 28 * 29 29 * @see SimulationStatusPanel … … 33 33 */ 34 34 @SuppressWarnings("serial") 35 public class CADS imulatorViewer extends JFrame implements CADViewer35 public class CADServerViewer extends JFrame implements CADViewer 36 36 { 37 37 … … 52 52 * Constructor. 53 53 */ 54 public CADS imulatorViewer()54 public CADServerViewer() 55 55 { 56 56 super(); 57 setTitle("CAD S imulator " + getAppVersion());57 setTitle("CAD Server " + getAppVersion()); 58 58 59 59 initComponents(); -
trunk/src/tmcsim/cadsimulator/viewer/actions/ExitAction.java
r24 r124 3 3 import java.awt.event.ActionEvent; 4 4 import javax.swing.AbstractAction; 5 import tmcsim.cadsimulator.viewer.CADS imulatorViewer;5 import tmcsim.cadsimulator.viewer.CADServerViewer; 6 6 7 7 /** … … 19 19 * Reference to the CADSimulatorViewer. 20 20 */ 21 private CADS imulatorViewer theViewer;21 private CADServerViewer theViewer; 22 22 23 public ExitAction(CADS imulatorViewer viewer)23 public ExitAction(CADServerViewer viewer) 24 24 { 25 25 super("Exit"); -
trunk/src/tmcsim/client/CADClientView.java
r37 r124 48 48 * Main Text Area, and Footer. User input is handled by the Command Line Pane. 49 49 * Any commands are sent to the model which are then transmitted to the 50 * CAD S imulator. The view keeps track of current CAD Screen Number and the50 * CAD Server. The view keeps track of current CAD Screen Number and the 51 51 * current page being displayed on each screen. This allows for the screen 52 52 * refresh and cycle commands to return the screen to its previous page. … … 645 645 { 646 646 JOptionPane.showMessageDialog(this, 647 "Connection to the CAD S imulator has been lost. " +647 "Connection to the CAD Server has been lost. " + 648 648 "Restart the CAD Client.", "Connection Error", 649 649 JOptionPane.ERROR_MESSAGE); 650 return; 650 //return; 651 // Changed to hard exit because Windows was hanging here 652 System.exit(-1); 651 653 } 652 654
Note: See TracChangeset
for help on using the changeset viewer.
