Skip to main content

Posts

Showing posts from September, 2013

Create Hello World Plugin for Eclipse

Aim:                Here we are going to create hello world plugin for eclipse. Steps: Open Eclipse   Go to Window-> Open Perspective-> Other. A dialog Box Will Appear. Choose Plugin development Click OK. Plugin Development Environment is added to our Eclipse. Now We can create our Hello World Plugin by File-New-plugin Project.   Enter the name of the project and check   source folder is “src” & destination folder is “bin”   Enter Vendor name and Click Next.   Choose Template for our plugin, for example hello world command. Provide Class name, Package Name and Display Message.   Click Finish to complete the Creation of the plugin project.   Now our Project is created that will be look like as follows. Right Click on Project- Run As- Eclipse Application.   New Ide will be started with our Plugin.   Click Sample Comman...