Changeset 425 in tmcsimulator for trunk/src


Ignore:
Timestamp:
06/24/2019 04:47:05 PM (7 years ago)
Author:
jdalbey
Message:

build.xml updated to include new highway model package. CADlogDisplay altered to show only user entries not scripted ones.

Location:
trunk/src/tmcsim
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tmcsim/application.properties

    r424 r425  
    1 #Sun, 23 Jun 2019 14:38:34 -0700 
     1#Mon, 24 Jun 2019 18:00:23 -0700 
    22 
    3 Application.revision=423 
     3Application.revision=424 
    44 
    5 Application.buildnumber=140 
     5Application.buildnumber=142 
  • trunk/src/tmcsim/client/CADlogDisplay.java

    r416 r425  
    6969     */ 
    7070    private CADClientSocket theClientSocket; 
    71     /** 
    72      * Instance of the ClockView. 
    73      */ 
    74     private ClockView theView; 
     71 
    7572    /** 
    7673     * Properties object for the CADClient class. 
     
    132129                            sb.append(notesTable.getValueAt(row,1) + " "); // time 
    133130                            String initials = (String) notesTable.getValueAt(row,2); // initials 
    134                             // If there are no user intials, it's a scripted item 
    135                             if (initials.length() == 0) 
     131                            // If there are user intials, include this item. 
     132                            // Zero length initials mean it's a scripted item 
     133                            if (initials.length() > 0) 
    136134                            { 
    137                                 initials = "Script"; 
     135                                sb.append(initials + " "); 
     136                                sb.append(notesTable.getValueAt(row,4) + "\n"); // notes 
    138137                            } 
    139                             sb.append(initials + " "); 
    140                             sb.append(notesTable.getValueAt(row,4) + "\n"); // notes 
    141138                        } 
    142139                    } 
Note: See TracChangeset for help on using the changeset viewer.