MCPcopy Index your code
hub / github.com/bit4woo/ReSign / getParaFromTable

Method getParaFromTable

src/custom/CGUI.java:647–661  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 }

Callers 2

actionPerformedMethod · 0.95
getParaMethod · 0.95

Calls 1

getSignParaMethod · 0.95

Tested by

no test coverage detected