()
| 645 | } |
| 646 | |
| 647 | public LinkedHashMap<String, String> getParaFromTable(){ |
| 648 | LinkedHashMap<String, String> tableParas = new LinkedHashMap<String, String>(); |
| 649 | for (int i=0; i<table.getRowCount();i++){ |
| 650 | //System.out.println(table.getRowCount()); |
| 651 | String key = table.getValueAt(i, 0).toString(); |
| 652 | //System.out.println(key); |
| 653 | String value = table.getValueAt(i, 1).toString(); |
| 654 | //System.out.println(value); |
| 655 | if (!key.equals(getSignPara())){ |
| 656 | tableParas.put(key, value); |
| 657 | } |
| 658 | } |
| 659 | System.out.println(tableParas); |
| 660 | return tableParas; |
| 661 | } |
| 662 | public String getSignPara(){ |
| 663 | return textFieldSign.getText(); |
| 664 | } |
no test coverage detected