English 中文(简体)
日蚀中是否有捷径显示当前控制流?
原标题:Is there a shortcut in eclipse to display the current control flow?

我通常会碰见复杂的商业逻辑,在复杂的代码的雾中迷路。所以我需要找到的正是我,我会在其中看到确切的流程控制或分支,这导致我找到当前的声明。 我记得JBuilder有一个特点,它会给我一个覆盖编辑的内容,显示我的确切位置,而Eclipse也有这样的特征吗?

问题回答

一种更具控制性的流动-以中心为中心的解决办法(比我最初的回答(见下文)还要多)是:

控制流程图工厂3.7

icon Control Flook Factory is a Eclipse 插件,从 java bytecode 生成 < 强控流图,编辑并导出到 GreabXML、 DOT 或若干图像格式。

源代码图 源代码图


但在静态方面,当编码时,你可以添加 Mylyn插件 ,以便在探索某些代码时孤立你想要的特定环境(见“a href=”http://wiki.eclipse.org/index.php/Mylyn/User_Guide#Task-Focused_Interface” rel=“nofollown noreferr>>Task-Focuse界面 ):

"https://i.sstatic.net/KBnz3.png" alt="流行导航视图"/ >

没有 Mylyn, 您有 < a href=> http://help. eclipse. org/ galileo/index.jsp?potic=/ org. eclipse.platform.doc. user/ conceptes/coutline.htm" rel=" nofollow noreferrerr" >outline view , 至少显示您在其中的功能 :

"https://i.sstatic.net/8c9Ds.png" alt="直线视图"/ >


On the runtime side, you have the Debug perspective which will display where you are in the code at any point of the Debug session.
See "Java Debugging with Eclipse - Tutorial "

"https://i.sstatic.net/AYFcw.png" alt="eclipse 调试视图"/ >

我不久前为我的论文写了这个插件 。 http://eclipsefcg.sourforge.net/





相关问题
In Eclipse, why doesn t "Show In" appear for non-Java files?

If I have a *java file open, I can right click on the source, scroll down to "Show In (Alt-Shift-W)", and select Navigator. If I have an *xml, *jsp, or pretty much anything besides a Java source ...

Eclipse: Hover broken in debug perspective

Since upgrading Eclipse (Galileo build 20090920-1017), hover in debug no longer displays a variable s value. Instead, hover behaves as if I were in normal Java perspective: alt text http://...

Eclipse smart quotes - like in Textmate

Happy Friday — Does anyone know if eclipse has the notion of smart quotes like Textmate. The way it works is to select some words and quote them by simply hitting the " key? I m a newbie here so be ...

Indentation guide for the eclipse editor

Is there a setting or plugin for eclipse that can show indentation guides in the editor? Something like the Codekana plugin for visual studio (not so fancy is also OK). Important that it works with ...

Adding jar from Eclipse plugin runtime tab

I want to add .jar files for plugin from the Runtime tab of manifest file. When I use the Add... button, I can see only sub-directories of the plugin project. So if I want to add same .jar file to ...

How to copy multiple projects into single folder in eclipse

I have two projects, Project1 and Project2. Now i want to copy this projects into eclipse workspace but i want these projects to be in a single folder like below. Eclipse Workspace -> Project -> ...

Java: Finding out what is using all the memory

I have a java application that runs out of memory, but I have no idea which code is allocating the memory. Is there an application with which I can check this? I use Eclipse.

热门标签