Changeset 11 in tmcsimulator for trunk


Ignore:
Timestamp:
04/21/2016 03:02:32 PM (10 years ago)
Author:
jdalbey
Message:

Add unit test for IncidentHistoryPanel?

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IDE_metadata/NetBeans/TMCSim/nbproject/project.properties

    r6 r11  
    4949    ${javac.classpath}:\ 
    5050    ${build.classes.dir}:\ 
    51     ${libs.junit.classpath}:\ 
    52     ${libs.junit_4.classpath} 
     51    ${libs.junit.classpath} 
    5352javac.test.processorpath=\ 
    5453    ${javac.test.classpath} 
  • trunk/src/tmcsim/simulationmanager/IncidentHistoryPanel.java

    r2 r11  
    4848        incTypeTF.setMaximumSize(new Dimension(200, 20)); 
    4949        incTypeTF.setEditable(false); 
     50        incTypeTF.setName("incTypeTF"); 
    5051         
    5152        Box incTypeBox = Box.createVerticalBox(); 
     
    6364        incLocTF.setMaximumSize(new Dimension(800, 20)); 
    6465        incLocTF.setEditable(false); 
     66        incLocTF.setName("incLocTF"); 
    6567         
    6668        Box incLocBox = Box.createVerticalBox(); 
     
    8688        eventHistoryTable = new JTable(eventHistoryTableModel);   
    8789        eventHistoryTable.getTableHeader().setReorderingAllowed(false);   
     90        eventHistoryTable.setName("LogHistory"); 
    8891         
    8992        for(int c = 0; c < eventHistoryTable.getColumnCount(); c++) { 
Note: See TracChangeset for help on using the changeset viewer.