我已经用intellij的想法开发了一个插件,在项目上单击鼠标右键,我会得到该插件的名称,但是它始终是禁用的。如何启用该插件。这是我的plugin.xml代码:

    <actions>
       <group id="GenerateCRUDAction.GenerateCRUD" text="_GenerateCRUD" description="GenerateCRUD" popup="true">
           <action id="generateCrud" class="com.im.ui.crud.GenerateCrudAction" text="generateCrud"
                   description="generateCrud action">
           </action>
           <add-to-group group-id="ProjectViewPopupMenuRunGroup" anchor="last"/>
       </group>
   </actions>

最佳答案

您必须在操作的update()方法中启用演示,在哪里应检查输入是否对您的情况有效。

@Override
public void update(@NotNull AnActionEvent e) {

    final Presentation presentation = e.getPresentation();
    final Project project = e.getProject();

    if (project == null) {
        presentation.setEnabledAndVisible(false);
        return;
    }
    presentation.setEnabledAndVisible(true);
}


您可以查看Eclipser插件的源代码,在其中可以找到实现的详细示例。

10-07 16:11