Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to develop an eclipse plugin to show some special functions with Eclipse Java Editor. Except for these minor changes all other things should be same as a normal Eclipse Java Editor. What are some Eclipse plugin development tutorials to help me get started?
This is a nice tutorial for Eclipse plug-in development.
Here are some things you may want to look at for helpful info on extending the JDT:
http://www.ibm.com/developerworks/opensource/library/os-ecjdt/
http://wiki.eclipse.org/FAQ_How_do_I_extend_the_JDT%3F
The following are a bit more general on creating editors:
http://www.realsolve.co.uk/site/tech/jface-text.php
http://www.ibm.com/developerworks/edu/os-dw-os-ecl-commplgin1.html (and parts 2 and 3)
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I develop features for Eclipse, and I often have to make SWT GUIs, for ex. Wizards. Coding SWT in Java isn't difficult to me, but I would like sometimes to see in real time what I get. Actually, I found some extensions for Eclipse to edit SWT graphically, but I want to know some other users' experiences in that area, to decide if is it worth to deal with.
I recommend the WindowBuilder (https://www.eclipse.org/windowbuilder/).
It has a plugin for Eclipse and works with SWT and Swing.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed last year.
Improve this question
Jgrasp has a really cool debug viewer: http://www.jgrasp.org/viewers.html
Without any setup, you can see how your objects are interacting visually. It's been really handy for working with linked lists.
However, overall, I hate jGrasp. Is there anything like this for Netbeans or Eclipse? I ran a number of searches and came up dry. It's too bad....
I think, the closest thing you'll get is Jive : http://www.cse.buffalo.edu/jive/
It's a plugin for Eclipse. See there for installing instructions : http://www.cse.buffalo.edu/jive/download.html
In case anyone ends up here looking for an answer, jGRASP viewer/canvas plugins for Eclipse and IntelliJ have been available for a few years.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
What I tried so far: SWTBot and WindowTester.
My problem with SWTBot is that I can click into an edit field, but I can't type into it. I looked up this issue in google and it looks like that SWTBot does not have this feature implemented.
With WindowTester I had other problems: SWTWidgetLocator is working with texts so if I have a button with no text just image, I can not click it.
Thus on the whole I'm looking for either a workaround to the problems I mentioned above or a tool which does not have these shortcomings.
I'm working in an Eclipse RCP enviroment.
Check if Jubula or GUIdancer works for you.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
is there an automatic documentation tool for eclipse? (Like the Ghost Doc Tool)
I'm working in Java and i want a reccomended tool.
thanks
Found a nice tool http://jautodoc.sourceforge.net/
It's built-in.
Just type /** [enter] above a method and it will autocomplete the javadoc.
Then just use the javadoc tool to generate the html documentation.
Obviously, all useful docs have to be written by hand.
Another shortcut to generate Java document is (ALT+SHIFT+J) on selecting any method or class or variable etc in your eclipse IDE.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
This question had already been asked here on StackOverflow in late 2008. However, since then GWT improved rapidly and so did IntelliJ IDEA. And what's more important, count of IDEA plugins increased. So besides GWT Designer for Eclipse , is there something similar for IntelliJ?
GWT designer is only for eclipse. not for netbeans or intellij. you know there are some for intellij and netbeans that supports development of GWT but there is not any plugin like gwt ui designer for them.