Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "VJET/Search Features"

Line 10: Line 10:
 
<br/>
 
<br/>
 
<br/>
 
<br/>
!search.gif
+
[[Image:Vjet_search.gif]]
| border=1!<br/>
+
<br/>
 
<br/>
 
<br/>
 
# Select the file and press '''OK'''. The file will open in the editor area.
 
# Select the file and press '''OK'''. The file will open in the editor area.
Line 23: Line 23:
 
<br/>
 
<br/>
 
<br/>
 
<br/>
!call_hierarchy_open.gif
+
[[Image:Vjet_call_hierarchy_open.gif]]
| border=1!<br/>
+
<br/>
 
<br/>
 
<br/>
 
# The Call Hierarchy View displays the names of the JavaScript files that call the  selected entity and the line number(s) of the call. You can toggle the panes to  display the callee hierarchy.
 
# The Call Hierarchy View displays the names of the JavaScript files that call the  selected entity and the line number(s) of the call. You can toggle the panes to  display the callee hierarchy.
Line 32: Line 32:
 
<br/>
 
<br/>
 
<br/>
 
<br/>
!call_hierarchy_view2.gif
+
[[Image:Vjet_call_hierarchy_view2.gif]]
| border=1!
+
 
 +
[[Category:VJET]]

Revision as of 12:18, 30 November 2012

Developers often need to investigate code or to understand dependencies and relationships between entities. VJET JS provides support to help developers navigate through code.

{toc}


Search

Locate JavaScript file using the Search dialog

  1. Press Ctrl-Shift-T to open the Search dialog. Begin typing the name of the JavaScript file you want to locate; the Search dialog provides a list of matches based on your search criteria.



Vjet search.gif

  1. Select the file and press OK. The file will open in the editor area.


Call Hierarchy

The Call Hierarchy View allows users to view the callers and callees of a selected JavaScript entity.

  1. Select the entity, then Right Click > Open Call Hierarchy



Vjet call hierarchy open.gif

  1. The Call Hierarchy View displays the names of the JavaScript files that call the selected entity and the line number(s) of the call. You can toggle the panes to display the callee hierarchy.



Please refer to the Eclipse Java Development User Guide for detailed information about the Call Hierarchy View.

Vjet call hierarchy view2.gif

Back to the top