Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
8answers
3k views

What tools should I use to visualize structure of my code?

I have an application written in Java. In is stored in several files. It uses different classes with different methods. The code is big and complicated. I think it would be easier to understand the ...
6
votes
3answers
207 views

Java source code display in a browser?

I have my Java source code in the standard src/ lib/ test/ directory structure for my project. I want to generate a web view of my source code where I can fire up a browser and see syntax-highlighted, ...
6
votes
3answers
760 views

Algorithm visualization for C#

Is there any software that visualizes algorithms from code? As a flow chart of something similar. Not dependencies, inheritance and that kind of thing, but the code inside a function, or a series of ...
4
votes
2answers
92 views

Class visualization tools for Objective-C?

Does anyone know of any static class/code explorer/visualisation tools for Objective-C? Something to help become familiar with large code-bases? Thanks!
3
votes
1answer
536 views

QT Dependency Visualizer

I have a lot of classes which interact with other classes through signal&slot mechanism, composition, inheratance etc. I wonder, is there any tool which visualizes(such as:UML-like diagrams) ...
3
votes
6answers
431 views

Is it possible to display of the tree structure of the Java-code?

I am a newbie in Java. I am trying to figure out how to work this code. It seems to me that it would be very useful if in the beginning I get the general structure of the code (which methods exists ...
2
votes
2answers
222 views

Dependency Graphs similar to VS 2010 Ultimate?

I'm looking for a visualization tool for net code dependency graphs similar to Dependency Graphs feature of VS 2010 Ultimate. http://msdn.microsoft.com/en-us/library/ee847415.aspx Since VS 2010 ...
2
votes
2answers
105 views

overview/understand architecture codes in eclipse

I have a maven project imported into Eclipse. I'm trying to understand the code pattern (architecture). What is the best way to do this? will use any UML Eclipse plugin help on this? will use ...
2
votes
1answer
99 views

Can I configure code_swarm to only create the png files sans visual display?

Is there a way to configure code_swarm to only create the .png files. I think it would speed up the processing if it wasn't trying to display as it created the images. I've looked in the FAQ, but ...
1
vote
1answer
265 views

Eclipse Code Visualizer

Is there code visualizer available (preferred as eclipse plugin)?
0
votes
0answers
17 views

IDE or plugin to add helpful graphics or illustrate code as-is?

I was staring at my code thinking how boring the text looks. All I see is text, with no visualizable structure. Visualizable structures would be awesome: Background graphics such as 3D half-pipes ...
0
votes
1answer
60 views

UML or CASE tool to analyze *huge* JavaScript code base?

I have to figure out how a huge JavaScript code base works and I'm wondering if there are any CASE/UML tools to analyze its structure. I understand that there are several limitations because of the ...
0
votes
3answers
238 views

Scheme: Convert Code to picture

I have a weird Scheme question. This is a part of something bigger that I'm helping a friend with. I need to convert a Tree:Data into an image that accurately represents the tree (I'm sorry I don't ...