Closedown
This commit is contained in:
@@ -77,15 +77,15 @@ public class TestingList extends Panel {
|
||||
|
||||
Logger logger = Logger.getLogger("TestsLog");
|
||||
//these paths are converted to unix or win path according to host OS
|
||||
private String TESTS_DEVICES_DEFAULT_DIR = new java.io.File( "." ).getCanonicalPath()+ FilenameUtils.separatorsToSystem("/home/script/tests/production/");
|
||||
private String TESTS_TESTS_DEFAULT_DIR = new java.io.File( "." ).getCanonicalPath()+ FilenameUtils.separatorsToSystem("/home/script/tests/tests/");
|
||||
private String TESTS_LOG_DEFAULT_DIR = new java.io.File( "." ).getCanonicalPath()+ FilenameUtils.separatorsToSystem("/home/script/tests/log/TestsLog"+getnow()+".txt");
|
||||
private final String TESTS_DEVICES_DEFAULT_DIR = new java.io.File( "." ).getCanonicalPath()+ FilenameUtils.separatorsToSystem("/home/script/tests/production/");
|
||||
private final String TESTS_TESTS_DEFAULT_DIR = new java.io.File( "." ).getCanonicalPath()+ FilenameUtils.separatorsToSystem("/home/script/tests/tests/");
|
||||
private final String TESTS_LOG_DEFAULT_DIR = new java.io.File( "." ).getCanonicalPath()+ FilenameUtils.separatorsToSystem("/home/script/tests/log/TestsLog"+getnow()+".txt");
|
||||
//table1 columns indexes
|
||||
private int COL_CHECK = 0;
|
||||
private int COL_TIME = 1;
|
||||
private int COL_RESULT = 6;
|
||||
private int COL_SUCCESS = 7;
|
||||
private int COL_ICON = 8;
|
||||
private final int COL_CHECK = 0;
|
||||
private final int COL_TIME = 1;
|
||||
private final int COL_RESULT = 6;
|
||||
private final int COL_SUCCESS = 7;
|
||||
private final int COL_ICON = 8;
|
||||
|
||||
private void initLogger(){
|
||||
try {
|
||||
@@ -181,7 +181,7 @@ public class TestingList extends Panel {
|
||||
|
||||
setLayout(new java.awt.BorderLayout(10, 10));
|
||||
|
||||
jButtonRun.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/button_play.png"))); // NOI18N
|
||||
jButtonRun.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/button_play-64px.png"))); // NOI18N
|
||||
jButtonRun.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
jButtonRunActionPerformed(evt);
|
||||
@@ -251,7 +251,7 @@ public class TestingList extends Panel {
|
||||
|
||||
add(jScrollPane1, java.awt.BorderLayout.PAGE_START);
|
||||
|
||||
jButtonOpenLog.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/log-icon.png"))); // NOI18N
|
||||
jButtonOpenLog.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/log-icon-64px.png"))); // NOI18N
|
||||
jButtonOpenLog.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
jButtonOpenLogActionPerformed(evt);
|
||||
|
||||
Reference in New Issue
Block a user