在eclipse3.3中,JavaFileEditorInput这个internal类已经被干掉了,所以导致在插件中使用了JavaFileEditorInput之后导致编译不通过,为了做到与eclipse3.3以前版本兼容(至少是3.2),需要进行一下变通
通过google,我们发现,虽然eclipse3.3干掉了JavaFileEditorInput类,但是添加了FileStoreEditorInput来处理打开位于workspace之外的文件.
所以解决办法出来了,首先要判断一下当前的eclipse版本:
java 代码
- private static boolean inEclipse33;
- static {
- String version = System.getProperty("osgi.framework.version"); //$NON-NLS-1$
- if (version != null && version.startsWith("3.3")) //$NON-NLS-1$
- {
- inEclipse33 = true;
- }
- }
然后我们在使用到JavaFileEditorInput的地方这样改写:
java 代码
- // 为了兼容3.3和3.2
- String clazzName = element.getClass().getName();
- if (inEclipse33) {
- if (clazzName.equals("org.eclipse.ui.ide.FileStoreEditorInput")) {
- IURIEditorInput uri = (IURIEditorInput) element;
- return getOperation(document, new Path(uri.getURI().getPath()));
- }
- }else {
- if (clazzName.equals("org.eclipse.ui.internal.editors.text.JavaFileEditorInput")) {
- IPathEditorInput pei = (IPathEditorInput) element;
- return getOperation(document, pei.getPath());
- }
安徽新华电脑学校专业职业规划师为你提供更多帮助【在线咨询】