Saturday, December 20, 2014

IntelliJ Plugin Development Tutorial - Hello World Plugin

This is a very simple example plugin for IntelliJ IDEA plugin development. You can create this plugin in less than 10 minuets.
This plugin creates a menu bar item called "Hello World". Under that there is an option called "Say Hello". When you click on that option you will see a message window.

Following are the two files you should work with.

package com.lakj.comspace.intellij.helloworld;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.ui.Messages;
/**
* Created by Lak J Comspace on 12/20/2014.
*/
public class HelloWorldAction extends AnAction {
/**
* Implement this method to provide your action handler.
*
* @param e Carries information on the invocation place
*/
@Override
public void actionPerformed(AnActionEvent e) {
Project project = e.getProject();
Messages.showMessageDialog(project, "Hello, Welcom to IntellJ IDEA plugin development.", "Welcome",
Messages.getInformationIcon());
}
}
<idea-plugin version="2">
<id>com.lakj.comspace.intellij.helloworld</id>
<name>Lak J Comspace HelloWorld</name>
<version>1.0</version>
<vendor email="" url="http://lakjeewa.blogspot.com/">Lak J Comspace</vendor>
<description><![CDATA[
Enter short description for your plugin here.<br>
<em>most HTML tags may be used</em>
]]></description>
<change-notes><![CDATA[
Add change notes here.<br>
<em>most HTML tags may be used</em>
]]>
</change-notes>
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="131"/>
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
on how to target different products -->
<!-- uncomment to enable plugin in all products
<depends>com.intellij.modules.lang</depends>
-->
<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
</extensions>
<application-components>
<!-- Add your application components here -->
</application-components>
<project-components>
<!-- Add your project components here -->
</project-components>
<actions>
<group id="lakj.comspace" text="Hello _World" description="Hello World Menu">
<action
id="lakj.comspace.HelloWorldAction"
class="com.lakj.comspace.intellij.helloworld.HelloWorldAction"
text="_Say Hello"
description="Say hello to you."
icon="/resources/icon/icon.png"/>
<add-to-group group-id="MainMenu" anchor="last"/>
</group>
</actions>
</idea-plugin>
view raw plugin.xml hosted with ❤ by GitHub
When you click on the action item "Say Hello" the method called actionPerformed is executed and the message will be displayed.

Following are the GitHub URL's for complete plugin project. You can clone the project or downolad the project as a zip file. To run the project open IntelliJ IDEA and import the project.

GitHub repository URL - https://github.com/lakjcomspace/IntelliJHelloWorld
GitHub HTTPS clone URL - https://github.com/lakjcomspace/IntelliJHelloWorld.git
Download Project as a Zip - https://github.com/lakjcomspace/IntelliJHelloWorld/archive/master.zip



3 comments:

  1. Thanks for the tutorial, quite interesting the post is really useful. wordpress whmcs integration

    ReplyDelete
  2. Thanks for sharing this interesting blog with us. My pleasure to being here on your blog. I wanna come back here for new post from your site. Typesetting services in Abu Dhabi

    ReplyDelete
  3. WordPress is the world's most popular blogging platform, and it is used by millions of people worldwide - some of them use it to promote their products and services, while others use it just to keep in touch with their loved ones. Either way, WordPress is easy to operate, feature-rich and it comes with a myriad of useful plugins that can enhance the user experience. See more custom plugin development

    ReplyDelete