Eclipse RCP cheat sheet for extension points? [closed] - java

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

Related

Java open source project(wihout tests) for testing [closed]

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 am looking for a java open-source project that is multithreaded, has database persisting and a web part and that doesn't contain any unit tests. It also mustn't be bigger than 100 classes. I want to write the tests for such a program.
Thank you in advance!
You can find open source projects source at below locations -
Google Developers
Java forge
code google (for small projects)
You can find opesource projects at:
sourceforge
github

java code analysis and structure by tool or pluggin [closed]

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.

Do you know good JMonkeyEngine tutorials and docs? [closed]

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'm interested in JMonkey for some fun projects, but when I search Google to find tutorials and docs, I can only find either really basic and/or incomplete stuff, like these on http://jmonkeyengine.org/, or really specific ones. Do you know some "from beginner to expert" tutorial for JMonkey?
http://jmonkeyengine.org/wiki/doku.php/jme3 has a complete series of tutorials for jME3. They just haven't been accessible via google until now..
http://jmonkeyengine.org/wiki/doku.php/jme2:jme2 has a series of tutorials for the now community-supported old jME2
Actually, the best I found is this one:
http://www.theprogrammersweblog.com/2008/12/3d-game-programming-in-java-using.html
It's incomplete (but maybe it will be completed someday), but 11 parts are already available.
The aim is to create a complete Asteroid game.
Hey check this Game Making PDF

Java open sources list [closed]

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
Any idea what are the possible palces to find the list of available open sources/commercial softwares at a sigle place for java platform? , Yes i'm not expecting maven repositories , I just want to know if anyone maintaining the list available in a single place
Thanks in advance,
- Srinivas
Any idea what is the best palce to find the list of available open sources/commercial softwares at a sigle place for java platform?
There is no such "the" list. The best you can get is more less up-to-date subset of something that is in a permanent evolution. Some examples:
http://java-source.net/
http://www.manageability.org/blog/opensource/
http://www.java-opensource.com/
http://oreilly.com/pub/q/java_os_directory
Some places to get you started:
Java.net
Project Kenai
Github
java2s also lists quite a lot of them and also groups them by categories
http://www.java2s.com/Open-Source/Java/CatalogJava.htm

Need recommendatins on a Java open source project for an academic study [closed]

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.

Categories

Resources