views:

100

answers:

2

I want to develop a Java editor eclipse plugin which is slightly different than the normal Java Editor. Is it possible to extend the Normal Java Editor itself? Thanks in advance

+1  A: 

In eclipse you usually do not extend (subclass) an editor (or another feature) but use existing extension points to contribute additional functionality or behaviour.

The eclipse SDKs Help contains a book named 'JDT Plug-In developer guide' with a chapter 'Reference/Extension Points Reference'. There you can find the JDT plugin extension points.

Andreas_D
+1  A: 

As Andreas said, you don't extend editors.

However, you can reuse the editor configuration and many of the JDT tools.

Here are some things you may want to look at for helpful editor info:

Scott Stanchfield