Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there any tool that helps analyse code structure in a java project, either as an eclipse pluggin or as a standalone?
I guess something similar to what Structure101 seems to do, but I am looking for something free.
I.e. to visualize dependencies among jars, classes, class-hierarchies etc.
It is mostly to understand an existing code-base faster, rather than set coding rules or profile etc.
I've found the following tools useful
CodePro Analytics - http://code.google.com/javadevtools/codepro/doc/index.html
JDepend - http://www.clarkware.com/software/JDepend.html
Sonar - http://www.sonarsource.org/
Metrics - http://metrics.sourceforge.net/
you mean like Sonar?
Tons of them. The thing is you probably want to google for the kinds of tests, eg, "McCabe complexity java" or "test coverage java".
You might have a look at this wikipedia article.
Update
Aha. Try depfind.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there any code coverage tool with a plugin for Eclipse for Mule.
I'm looking for a tool that can highlight in mule-config lines covered, % covered and things like that. Curious what people use?
There is an interesting project currently under development called Munit that might fit your needs.
The coverage feature is not yet implemented but i planned for the next release
The code coverage is used in order to know how many lines of code are covered. But, I think that you want to know how many lines are covered in your mule-config.xml right? As far I know there are no tools for that.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I do Eclipse RCP plug-ins from time to time. My biggest hurdle is to wrap my head around the extension points (not what they are, but which one to use when). Is there a site where I can find a list like "If you want to action extend the following extension points.
Such a cheat sheet would be really helpful.
The help pages "Platform Plug-in Developer Guide > Reference > Extension Points Reference. " can be a starting point, in that it helps listing all the categories of extension points.
(mentioned in "FAQ How do I find out more about a certain extension point?")
If you couple that with the plugin spy, you can quickly isolate the right available plugin elements for you to extend.
Some are - also some none Lotus Expeditor - are described with examples in the RedWiki for plugin development. Could be a good start. The wiki is here >> http://bit.ly/pluginredwiki
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can anyone suggest me a good, easy-to-use, FREE load testing tool that I can download easily & use? I'm using Java 1.4.
Thought I'd use JMeter, but it seems it requires Java 1.6 and some additional configuration settings.
Any other suggestions?
Thx
Depends on what exactly you want to load test.
If you want to load test webpages then JMeter is a good bet. And I think Jmeter works with 1.5 too.
You could run an older version of The Grinder. Pretty sure version 2 can run on 1.4.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm looking for a Java open source project for an academic study on test cases.
I need a project with 20-40 KLOC and at least a 100 JUnit tests.
A project that was developed using TDD methodology is prefered.
Something that I can drop in eclipse and run all the tests with minimal overhead for setups.
Any recommendations?
It's amusing that you say "drop in eclipse", as some parts of eclipse were written with TDD and have relatively large numbers of LOC. You may want to go that route. I know, for example, that the Eclipse-based FORTRAN IDE project is one such endeavor.
The Spring framework? May be too large perhaps.
There are any number of projects you can use. You could look at the BouncyCastle encryption library.
http://bouncycastle.org/java.html
To help with your search, you could have a look at Koders (http://koders.com/), the source code search engine. They have information about LOC for open source projects.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
What is the best Java spell checking API?
Free or purchased, must be royalty-free.
Just used Jazzy and it worked well. Try this example and download the dictionary.
Here's the Maven dependency:
<dependency>
<groupId>net.sf.jazzy</groupId>
<artifactId>jazzy</artifactId>
<version>0.5.2-rtext-1.4.1-2</version>
</dependency>
Sentry Spell Checker seems interesting. It supports dialog-based spell checking and as-you-type highlighting of misspelled words. It's a commercial product ($399 for the engine), but there are no royalty fees.
Jazzy is a simpler, open source alternative. It's been around for awhile, but doesn't seem to be under active development anymore. On the bright side, it is free (LGPL license).
I would look at Jazzy first to see if it fits your needs. There's a demo applet here where you can try it out.
There are a couple other I have heard of, but I don't know if they are any good.
Rapidspell and JTextCheck