JDEE Quick Reference

Abbreviation

Table 1 - Control Flow Abbreviations.
StatementAbbreviation
if-then if
elseelse
if-then-elseife
else-ifeif
whilewhile
forfor
for (int i=0;i<UL;i++)fori
for (Iterator i=c.iterator(); i.hasNext();)foriter
main methodmain
switchswitch
casecase
trytry
catchcatch
try finallytryf
finallyfinally

Completion

Table 2 - Methods and Field Names Completion.
CommandDescription
C-c C-v .Inline completion method
C-c C-v C-.Comletion by the chosen method (specified by variable jde-completion-function)
M-/Dynamic keyword completion

Xref

Table 3 - Searching Cross-Reference Database.
FunctionDescription
M-x jde-xref-make-xref-db Build the cross-reference database.
M-x jde-xref-update Update the xref database by recompiling just the part of the db that has been changed.
M-x jde-xref-first-caller (C-c C-v a) Called from a function body, this list the first in a sequence of callers of the function.
M-x jde-xref-next-caller (C-c C-v n) Go through each of the callers in sequence after jde-xref-first-caller.
M-x jde-xref-display-call-tree This displays an interactive tree view of the function you are in, and it's callers.
M-x jde-xref-list-uncalled-functions Called from a java file, this lists all the functions in the file that have no apparent callers.

Last updated: 2004-09-11 16:35:11 -0700