Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to write a plugin for Eclipse? [closed]

How can I start writing a plugin for Eclipse?

I've looked for documentation, but unfortunately there is very little or it's poor, so what articles can recommended?

like image 753
Agusti-N Avatar asked Nov 18 '08 16:11

Agusti-N


People also ask

What is plugin project in Eclipse?

The Plug-in Development Kit (PDK) includes an Eclipse plug-in that you can use in your Eclipse or Rational® Application Developer environment to create and edit some of the configuration files in the plug-ins that are used in your virtual applications. Overview. Prerequisites. Installing the Eclipse plug-in.


2 Answers

There are some pretty good resources and tutorials on the main Eclipse and IBM's site. One of the best ways is to pick an open source plug-in that has some similar features to what you want to do and start to dissect it.

  • PDE Does Plug-ins
  • Plug-in development 101, Part 1: The fundamentals
  • Eclipse Plugins Exposed, Part 1: A First Glimpse
  • Developing Eclipse plug-ins
like image 60
David Schlosnagle Avatar answered Nov 08 '22 04:11

David Schlosnagle


Eclipse has a pretty good "Your First Plug-in" tutorial. If it is confusing, I'm sure they would greatly appreciate your feedback. Keep in mind that Eclipse is essentially Java, so if you don't have a good grasp of Java go for general Java tutorials first, and then come back to Eclipse development.

O'Reilly has two good Eclipse Plugin tutorials:

  • Eclipse Plugins Exposed
  • Develop Your Own Plugins for Eclipse

They not only go through the simple code examples, but give you screen shots of the process since a lot of work is done through wizard type interface windows.

If these aren't helpful, perhaps you could be more specific as to what is difficult to follow.

-Adam

like image 25
Adam Davis Avatar answered Nov 08 '22 03:11

Adam Davis