Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I implemented my eclipse plug in to create my type of prject, now I'm writing a small project of unitesting for that. when user create (with the plugin) unit testing project I want to give an option to choose to which project it related, so I want a button like browse that let him to which project he releatd

Thanks!!

share|improve this question
Possible duplicate? stackoverflow.com/questions/142863/… – John Jun 4 '12 at 6:15

closed as not a real question by Jim Garrison, Andrew Barber, Mark, 0A0D, Graviton Jun 5 '12 at 0:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

There is already an import button that exists in Eclipse. Just go to File -> import and then select existing projects into workspace. Hope this helped!


In the case you want to add the button to your GUI you may want to consider doing an Eclipse Plugin.

Heres the Plugin Development Enviroment:

Plugin Development Enviroment for Eclipse

Here is the Documentation:

PDE Documentation

share|improve this answer
thanks!maybe I were not so clear i want to add such a button to my GUI... – user758795 Jun 4 '12 at 6:24
@user758795 please see my edit – John Jun 4 '12 at 6:29
ok, and after i'm adding plug in, if I want to add such a button on the plugin how can I do it?i would like it as prt as other plug in, so i ahve to create 2 plugins? – user758795 Jun 4 '12 at 6:48
I'm not really an expert on Eclipse Plugins, I would post a new Question. Make sure its detailed so that people know exactly what you want. Good Luck! – John Jun 4 '12 at 6:54
maybe it more better to do it with browse button and not import , anyway i also don't know how to implement such a button – user758795 Jun 4 '12 at 7:05
show 4 more comments

using the class ContainerSelectionDialog help to this issue

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.