Ignore:
Timestamp:
07/18/2019 08:20:12 AM (7 years ago)
Author:
jdalbey
Message:

ConfigStatusTab? updated to fix @169.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tmcsim/cadsimulator/viewer/CADServerViewer.java

    r365 r455  
    5858    */ 
    5959    private TrafficModelViewPanel trafficPanel; 
     60    /* 
     61     * Name of propertes file for this run of CAD Server. 
     62    */ 
     63    private String propertiesFile; 
    6064     
    6165    /** 
    6266     * Constructor. 
    6367     */ 
    64     public CADServerViewer() 
     68    public CADServerViewer(String propertiesFile) 
    6569    { 
    6670        super(); 
     71        this.propertiesFile = propertiesFile; 
    6772        setTitle("CAD Server " + RevisionNumber.getAppVersion()); 
    6873 
     
    111116        simulationPanel = new SimulationStatusPanel(); 
    112117        mediaPanel = new MediaStatusPanel(); 
    113         configPanel = new ConfigStatusTab(); 
     118        configPanel = new ConfigStatusTab(propertiesFile); 
    114119        trafficPanel = new TrafficModelViewPanel(); 
    115120 
Note: See TracChangeset for help on using the changeset viewer.