()
| 594 | } |
| 595 | |
| 596 | public void updateProjectPane() { |
| 597 | pane.removeAll(); |
| 598 | ListIterator li = openProjects.listIterator(); |
| 599 | Project pro; |
| 600 | while (li.hasNext()) { |
| 601 | pro = (Project) li.next(); |
| 602 | JScrollPane mainpane = new JScrollPane(pro); |
| 603 | pane.add(mainpane, pro.projectName); |
| 604 | } |
| 605 | SwingUtilities.updateComponentTreeUI(this); |
| 606 | } |
| 607 | |
| 608 | public void closeSurfex() { |
| 609 | // System.out.println("closeSurfex()"); |
no test coverage detected