我添加了一个新的
Action,以
popup在
getJPopupForExplorerTree()。您可能需要
xmlFile从
XMLTree构造函数中重构出来;为了方便起见,我已经对其进行了硬编码:
popup.add(new AbstractAction("Reload") { public void actionPerformed(ActionEvent e) { System.out.println("Reload"); try { root = getRoot("xml.xml"); setModel(new XMLTreeModel(root)); } catch (Exception ex) { ex.printStackTrace(System.err); } }});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)