Changeset 158 in tmcsimulator for trunk/src/tmcsim/client


Ignore:
Timestamp:
10/21/2017 11:28:15 AM (9 years ago)
Author:
jdalbey
Message:

ATMSBatchDriver: Removed diagnostic output of ATMS time. build.xml fixed ATMSBatchDriver.jar target.

Location:
trunk/src/tmcsim/client
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tmcsim/client/ATMSBatchDriver.java

    r157 r158  
    141141            System.exit(0); 
    142142        } 
     143        // Initialize the highway model 
    143144        incidents = new HashMap<String, List<String>> (); 
    144145        highways = new Highways( 
     
    175176                    long simtime = theCoorInt.getCurrentSimulationTime(); 
    176177                    currentClock = formatInterval(simtime); 
    177                     long ATMStime = theCoorInt.getATMStime();        
    178                     Date atmsdate = new Date(ATMStime); 
    179                     currentATMStime = formatter.format(atmsdate); 
     178                    // For Debugging, show the ATMS time 
     179//                    long ATMStime = theCoorInt.getATMStime();        
     180//                    Date atmsdate = new Date(ATMStime); 
     181//                    currentATMStime = formatter.format(atmsdate); 
    180182                    try { 
    181183                        simClock = formatter.parse(currentClock); 
     
    188190                } catch (RemoteException ex) 
    189191                { 
     192                    System.out.println("Remote Exception reading sim or ATMS clock time"); 
    190193                    Logger.getLogger(ATMSBatchDriver.class.getName()).log(Level.SEVERE, null, ex); 
    191194                } 
  • trunk/src/tmcsim/client/ATMSBatchViewer.form

    r152 r158  
    44  <Properties> 
    55    <Property name="defaultCloseOperation" type="int" value="3"/> 
     6    <Property name="title" type="java.lang.String" value="ATMS Batch Driver"/> 
    67  </Properties> 
    78  <SyntheticProperties> 
  • trunk/src/tmcsim/client/ATMSBatchViewer.java

    r152 r158  
    7575 
    7676        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); 
     77        setTitle("ATMS Batch Driver"); 
    7778 
    7879        lstEvents.setFont(new java.awt.Font("Noto Mono", 0, 12)); // NOI18N 
Note: See TracChangeset for help on using the changeset viewer.