views:

18

answers:

1

I would like to create the configuration editor plugin for my XML configuration file which would be similiar to this.

Configuration editor

I was searching how I can create Eclipse plugin and I didn't find any plugin option which would allow me to do that. Only thing which is close to what I want is custom editor but it would be very tedious write entire configuration logic and I would like to use some existing tools.

Thank you for advices.

+1  A: 

I think you would have to create a custom editor using the forms API, see http://stackoverflow.com/questions/3062775/eclipse-form-based-xml-editor/3073313#3073313

Fabian Steeg
Thanks. That looks like what I need.
Tomáš Linhart