rcp(插件开发)控制编辑器重复打开

在org.eclipse.ui.editors扩展点中有个matchingStrategy的元素,可以实现IEditorMatchingStrategy接口,覆写

public boolean matches(IEditorReference editorRef, IEditorInput input)方法,就可以做到判断编辑器输入是否匹配打开的编辑器。

说的简单点:每次我们打开一个文件,转化为input会去回调matches方法,判断是否文件已经打开,从而达到不会打开多次目的,即单例。一般应用于一个编辑器编辑多个文件。


如:
public class DiagramMatchingStrategy implements IEditorMatchingStrategy {

@Override
public boolean matches(final IEditorReference editorRef, final IEditorInput input) {

try {
final IFile newDataFile = FileService.getDataFileForInput(input);
final IFile openEditorDataFile = FileService.getDataFileForInput(editorRef.getEditorInput());

if (null != newDataFile && newDataFile.equals(openEditorDataFile)) {
return true;
}
} catch (PartInitException exception) {
exception.printStackTrace();
}

return new DiagramMatchingStrategy ().matches(editorRef, input);
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值