idea自定义plugin

1.创建Plugin工程

如果Module SDK中没有可选的SDK,那么点击New新添加一个SDK,目录就选择Intellij的安装位置即可。

idea自定义plugin_第1张图片

创建出的Plugin项目结构很简单,只是在META-INF下多了一个plugin.xml配置文件,后文会介绍到它的用处。

2.让插件Say哈喽

2.1添加Component

在src目录上Alt+Insert,可以看到New对话框中列出有三种组件,分别对应三种级别:Application、Project、Module Component。

这里我们选择Application Component作为实例,在弹出框中输入一个名字例如MyComponent,这样一个组件就创建出来了。

idea自定义plugin_第2张图片

然后在MyComponent中添加一个SayHello的方法,其他方法暂不实现,源代码如下所示:

packagecom.cdai.plugin.rapidg;

importcom.intellij.openapi.components.ApplicationComponent;

importcom.intellij.openapi.ui.Messages;

importorg.jetbrains.annotations.NotNull;

/**

* My Component

* User: cdai

* Date: 13-11-4

* Time: 上午10:08

*/

publicclassMyComponentimplementsApplicationComponent {

publicMyComponent() {

}

publicvoidinitComponent() {

// TODO: insert component initialization logic here

}

publicvoiddisposeComponent() {

// TODO: insert component disposal logic here

}

@NotNull

publicString getComponentName() {

return"MyComponent";

}

publicvoidsayHello() {

// Show dialog with message

Messages.showMessageDialog(

"Hello World!",

"Sample",

Messages.getInformationIcon()

);

}

}

## 螺丝刀积分iOS大姐夫


2.2添加Action

现在需要添加一个Action让使用我们插件的用户可以通过菜单或其他方式点击到插件。

idea自定义plugin_第3张图片

Action主要工作是创建一个Application和MyComponent对象,代码如下:

packagecom.cdai.plugin.rapidg;

importcom.intellij.openapi.actionSystem.AnAction;

importcom.intellij.openapi.actionSystem.AnActionEvent;

importcom.intellij.openapi.application.Application;

importcom.intellij.openapi.application.ApplicationManager;

/**

* Say Hello Action

* User: cdai

* Date: 13-11-4

* Time: 上午10:16

*/

publicclassSayHelloActionextendsAnAction {

@Override

publicvoidactionPerformed(AnActionEvent e) {

Application application = ApplicationManager.getApplication();

MyComponent myComponent = application.getComponent(MyComponent.class);

myComponent.sayHello();

}

}

2.3配置文件

其实前面两步新建Component和Action的同时,IDEA在帮我们自动将它们注册到META-INF/plugin.xml中。

我们刚才添加的Application Component和Action会在结点下,plugin.xml最终是下面的样子:


com.cdai.plugin.rapidg

CDai's Rapid Generator Plugin

1.0

http://www.yourcompany.com">CDai

Enter short description for your plugin here.

most HTML tags may be used

]]>

Add change notes here.

most HTML tags may be used

]]>



on how to target different products -->


com.intellij.modules.lang

-->


com.cdai.plugin.rapidg.MyComponent




3.运行调试

打开Run/Debug配置对话框,新加一个Plugin类型的,Use classpath of module选择刚才的示例项目。

idea自定义plugin_第4张图片

运行起来就会发现,原来会启动一个新的Intellij IDEA实例,重新走一遍启动配置过程,可以看到插件的名字就是plugin.xml中中的值。

我们可以只选中我们刚开发的插件,忽略掉其他的。现在通过Window->Say Hello!就可以触发我们的插件了,效果就是会弹出个对话框。

idea自定义plugin_第5张图片
idea自定义plugin_第6张图片

你可能感兴趣的:(idea自定义plugin)