Ignore:
Timestamp:
06/18/2019 10:56:55 AM (7 years ago)
Author:
jdalbey
Message:

Create new ExportAction?.java for Sim Mgr and a new client, CADlogDisplay that outputs to console the current CAD log every 10 seconds.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tmcsim/simulationmanager/SimulationManagerView.java

    r365 r416  
    4747import tmcsim.simulationmanager.actions.DeleteIncidentAction; 
    4848import tmcsim.simulationmanager.actions.ExitAction; 
     49import tmcsim.simulationmanager.actions.ExportAction; 
    4950import tmcsim.simulationmanager.actions.GotoTimeIndexAction; 
    5051import tmcsim.simulationmanager.actions.LoadParamicsNetworkAction; 
     
    686687    private void createMenuBar() { 
    687688 
    688         gotoMenuItem = new JMenuItem(new GotoTimeIndexAction(this));         
     689        gotoMenuItem = new JMenuItem(new GotoTimeIndexAction(this));     
     690        exportMenuItem = new JMenuItem(new ExportAction(this)); 
    689691        exitMenuItem = new JMenuItem(new ExitAction(this)); 
    690692         
    691693        fileMenu = new JMenu("File"); 
    692694        fileMenu.add(gotoMenuItem); 
     695        fileMenu.add(exportMenuItem); 
    693696        fileMenu.add(exitMenuItem); 
    694697         
     
    12551258    private JMenu fileMenu; 
    12561259    private JMenuItem gotoMenuItem; 
     1260    private JMenuItem exportMenuItem; 
    12571261    private JMenuItem exitMenuItem; 
    12581262     
Note: See TracChangeset for help on using the changeset viewer.