Evaluating expressions 
 In this section, you will evaluate expressions in the context of your
running Java program. 
  -  Debug junit.samples.VectorTest.java to the breakpoint in the
    setUp()method and select Step Over twice to populatefFull.  (See the Debugging your Programs section for full
    details.)
 
- Open the Debug Shell view by selecting Window > Show View > Display 
    and type the following line in the view:
     fFull.size()
 
-  Select the text you just typed, and from its context menu, select Display. 
    (You can also choose Display Result of Evaluating Selected Text  ( ) from
    the Debug Shell view toolbar.) ) from
    the Debug Shell view toolbar.)   
 
-  The expression is evaluated and the result is displayed in the Display
    view. 
       
 
-  On a new line in the Debug Shell view, type the following line: 
     fFull.toArray()
 
-  Select this line, and select Inspect from the context
    menu.  (You can also choose Inspect Result of Evaluating
    Selected Text  ( ) from the Debug Shell view toolbar.) ) from the Debug Shell view toolbar.)
- A lightweight window opens with the value of the evaluated expression. 
       
 
Debugger
  Evaluating expressions
  Displaying the result of evaluating an expression
  Inspecting the result of evaluating an expression
  Expressions view