使用
Action封装,为了显示给定文件更新文本窗格中的代码。您可以从
ListSelectionListener添加到中调用 *** 作
JList。您也可以使用动作菜单项或工具栏按钮,如图所示这里。
ImageApp是一个相关的例子。
例如,您的每个 *** 作实例都需要目标文本窗格和文件:
class FileAction extends AbstractAction { JTextPane target; File file; public FileAction(JTextPane target, File file) { this.target = target; this.file = file; } @Override public void actionPerformed(ActionEvent e) { // render file in target }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)