Closedown

This commit is contained in:
boccioli_m
2017-10-16 14:27:52 +02:00
parent 94a0f495d5
commit f831142445

View File

@@ -422,8 +422,8 @@ public class TestingListDetails extends javax.swing.JPanel {
HashMap mParameterAttributes = new HashMap(); //contians value and description
for(int row=0 ; row<jTableParams.getRowCount() ; row++){
String sParam = jTableParams.getValueAt(row, 0).toString();
String sVal = jTableParams.getValueAt(row, 1).toString();
String sDescr = jTableParams.getValueAt(row, 2).toString();
String sVal = "\"" + jTableParams.getValueAt(row, 1).toString() + "\"";
String sDescr = "\"" +jTableParams.getValueAt(row, 2).toString() + "\"";
mParameterAttributes = new HashMap();
mParameterAttributes.put("value", (Object) sVal);
mParameterAttributes.put("description", sDescr);