August 2010
Intermediate to advanced
1224 pages
34h 17m
English
The code definition window is a “helper” window that works in close conjunction with the code editor window by displaying definitions for symbols selected within the code editor. It is actually a near clone of the code editor window, with one big exception: It is read-only and does not permit edits to its content.
The code definition window content is refreshed anytime the cursor position is moved within the code editor window. If the cursor or caret is placed in a symbol/type, the code definition window shows you how that symbol is defined.
Figure 6.27 shows an open code editor and a code definition window; the cursor in the editor is positioned on an internal field, _state, defined within the class InternalToken. ...