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 programs that are simple and stand-alone that can convert UML diagrams to java code? If there isn't what is the best eclipse plug-in?
You can also try a web application like genmymodel
It enables to generate from UML to Java. If you use a github repository, you can also preserve your changes between each generation (using JMerge annotations).
You have two way to work with UML.
First approach is to model then generate code from model. The best tools are Rational and Modelio Soft.
Second approach is to live syncrhonized java and UML. The best tool is with no doubt EclipseUML Omondo.
No. Usually they produce very bad code which is unusable. From my experience it takes a lot of work to produce UML model and it does not survive first week of implementation.
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
I have just learned JAVA and am wanting to play around with it. I keep seeing Eclipse repeated as the best IDE to write JAVA in. I have been working with it and it appears to be much to complicated for what I am wanting to do. I don't want multiple windows for multiple classes and functions. Basically learning how to use write JAVA in Eclipse seems like an entire different language than the JAVA I learned.
I am simply looking for something similar to notepad that assists you with your code writing (adds ending brackets, color coded).
Please Help!!!
The most simple is Notepad++ http://notepad-plus-plus.org/
hope it fits your needs, its extreme in its simplicity, but works.
(and its free)
Occupy a place for Sublime. Black background looks cooler.
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
The project aims to analyzing the patients’ illness cells using Big Data technology to indicate which treatments could have the best outcomes and fewest side effects.
But I think using python or java library. I can't decide which language's library is more useful for my project. if you have any experience , could you help me. I do not know about anything about big data.
Check out Anaconda. It's got just about every library you'll need for big data analysis bundled into one installer.
The Anaconda distro also includes Disco MapReduce, so you have all the tools you need to set up a distributed file system MapReduce farm for really large analysis jobs.
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 have a Web Service and I'm trying to add a simple Web User interface with the ability of adding some text and uploading file. what is the simplest and easiest one to use and compatible with Java. I'm using eclipse to develop my application.
I don't need a lot of support I just want it to be easy to use.
I can recommend wicket (http://wicket.apache.org/) you won't have licence restrictions (it's an Apache licence) and it's a time resistent solution: JSF are too complex for simple use cases, and Struts is quite as complicated but a rather old technology. GWT is too complex and time conuming for small projects.
You can naturally use bare Servlets or JSPs if you're really in very simple use cases.
Best Regards,
Zied Hamdi
http://1vu.fr
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 have a project with many packages and classes. It is obvious that it will have many Methods too. Currently, i am using Netbeans7.0 IDE. Is there any program, API or way to track all the possible path/methods/options like tree structure of all the classes? I wish to see all the branches which starts from first Method.
So, basically, what you need is a call graph of your project? Call graphs can be generated either through static code analysis or dynamically as your code is executed. Both approaches are useful and both have their advantages and disadvantages.
Both the Eclipse and the Netbeans profiler are able to do this dynamically, as mentioned here.
For static call graph generation have a look here and here.
EDIT:
The Eclipse IDE also has the capability to generate a tree-like call structure using the Call Hierarchy tab, as mentioned here. NetBeans has something similar since version 6.5.
Give Understand a look.
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 searching for data flow diagram creator for Java source code. Please suggest me any tool for the same.
SD Java parser with flow analysis.
You have to export the data flow graph to DOT to see it. The front end has support to do that.
I don’t know any software which create data flow diagram from java source code, however, I know that Microsoft Visio has the features of reverse engineering to create data flow diagram. But I don’t know whether it does for java source code or not. I will suggest you to try Visio 2010 for creating DFD. Hope this may help you.