1

I know it may sound like a weird question, but is there any .NET friendly way to develop eclipse plugins?

  • Java wrappers to .NET components?
  • .NET implementation of OSGI?
  • Translators? Code generators?
  • .NET API to automate Plugin creation?

For example, a company specializing in .NET that has some .NET based IDE-like tools wishes to move some tools to Eclipse, is there any way of reusing any of the work done? or must it be written from scratch in Java? (or any other JVM based language)

If there is nothing out there, is it possible to create a wrapper to embed .NET controls (Windows only or using Mono) inside an eclipse plugin?

I found these relevant resources: OSGi implementation for .NET

Is there a way to create Eclipse plugins with Python?

(Which suggest that the answer is "no", but the question is: can it be done in theory?)

asked Nov 15, 2011 at 15:44

1 Answer 1

2

The UI will not be portable. Eclipse has its own API that will need to be adhered to, and that's just not going to be the same as Visual Studio's API. Sorry.

But the logic, any raw data processing your plugin does could port fairly well. You could even put the logic into a COM component and call it from Java, or use JNBridge or JNI4net. Whether or not the logic code will port depends entirely on how you structured your code originally, however, so take the previous sentences with a grain of salt.

answered Nov 15, 2011 at 15:58
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.