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.
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
Is there a tool to create from custom Java code documentation similar to what you can find on this page?
By this I mean listing in a clear way: methods of a class, different types of fields, inheritance, interfaces it implements etc. I want to do this for a library I created. I'm aware that all this information could be found inside the code, but sometimes you don't have time to open every single source file. Preferable html output.
have a loot at the javadoc tool. it generates exactly this html from javadoc comments and source code.
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
I am looking for a java library for rendering markdown file which favor the github markdown syntax.
Specifically I need it supports github's code block style (not supported in standard markdown):
```javascript
alert("hello world")
```
You might look at https://github.com/sirthias/pegdown it appears to have some support for the GitHub flavor - including code blocks.
I ended up choosing https://code.google.com/p/markdown4j/ in my project https://github.com/greenlaw110/rythm-website which is running at http://rythmengine.org/
https://github.com/rjeschke/txtmark is easy to use and seems to be actively developed recently. It supports many extensions to the original Markdown language - like code blocks.
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 7 years ago.
Improve this question
Is there any Java library that can diff text (in particular XML) files and provide the result as an image (e.g. like Pretty Diff)?
There is a tool called guiffy that provides an API for diff and merge in java - it is actually more than that as it provides Eclipse and Netbeans plugins and that's how I know about it.
It has a feature where the diff output can be saved as an HTML - you can use the HTML output instead of image and render it on a JTextPane
JMeld
http://keeskuip.home.xs4all.nl/jmeld/
can be nicely integrated in Swing Applications. It's not been updated since 2009 but still working. A newer fork of it is available at
https://github.com/albfan/jmeld
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 3 years ago.
Improve this question
I need a tool for generating control flow in java, but not a visual draw, something that I can work with like with path conditions or so.
Anyone ?
To future record, what I´ve found that best suits to my needs is Soot.
http://www.sable.mcgill.ca/soot/
The ASM library can do that, at the JVM-bytecode level. See Method Analysis and Control flow analyses in http://download.forge.objectweb.org/asm/asm4-guide.pdf (page 121).
Atlas is an Eclipse plugin that enables program analysis. It has a querable graph database that includes the control flow graph (as well as data flow and other relationships).
Maybe this is what you were looking for http://www.jboss.org/jbpm
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)