热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

做eclipse插件的时候,遇到"Thechosenoperationisnotcurrentlyavailable"的错误

进入run()的时候,我发现window是空值我就是想调用一个窗口而已这是我的TestViewActionpackagecom.test.action;importorg.ec
进入run()的时候,我发现window是空值
我就是想调用一个窗口而已
这是我的TestViewAction
package com.test.action;

import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.window.IShellProvider;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;

import com.test.view.MainView;

public class TestViewAction implements IWorkbenchWindowActionDelegate{


private IWorkbenchWindow window;
private IShellProvider is = null;


public TestViewAction(IWorkbenchWindow window){
this.window = window;
}

@Override
public void dispose() {
// TODO Auto-generated method stub

}

@Override
public void init(IWorkbenchWindow arg0) {
// TODO Auto-generated method stub

}

@Override
public void run(IAction arg0) {
// TODO Auto-generated method stub
window.getActivePage().findView("com.test.view.MainView");
}

@Override
public void selectionChanged(IAction arg0, ISelection arg1) {
// TODO Auto-generated method stub

}

}



plugin.xml





        point="org.eclipse.ui.actionSets">
        label="Sample Action Set"
            visible="true"
            id="com.test.actionSet">
                            label="Test &Menu"
               id="testMenu">
                               name="testGroup">
            

         

                          label="&Test Action"
               icon="icons/sample.gif"
               class="com.test.action.TestViewAction"
               tooltip="Hello, Eclipse world"
               menubarPath="testMenu/testGroup"
               toolbarPath="testGroup"
               id="com.test.action.TestViewAction">
         

   
   
             point="org.eclipse.ui.views">
                   class="com.test.view.MainView"
            id="com.test.view.MainView"
            name="mainView">
      

   




8 个解决方案

#1


@Override
public void init(IWorkbenchWindow arg0) {
// TODO Auto-generated method stub
     this.window = window;
}

#2


另外好像必须有个无参构造函数的,系统创建对象的时候是用无参构造函数的。

#3


谢谢楼上的

#4


up

#5


seesee

#6


原来是这么回事儿啊!

#7


xixie 

#8


貌似还是不行,人在吗,指教指教
引用 2 楼  的回复:
另外好像必须有个无参构造函数的,系统创建对象的时候是用无参构造函数的。

推荐阅读
author-avatar
遗失的美好顺_599
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有