Expressions

An expression is a snippet of code that can be evaluated to produce a value.  The context for an expression depends on the particular debug model.  Some expressions may need to be evaluated at a specific location in the program so that the variables can be referenced.  IExpression defines a general interface for debug expressions.

An expression manager (IExpressionManager) keeps track of all of the expressions in the workspace.  It will also fire events to interested listeners as expressions are added, removed, or changed.

Expressions can be used to implement "watch lists," "inspectors," or even "scrapbooks" that let users evaluate code snippets.  The Java tooling uses expressions to implement the expression generated when the user inspects the source code.

Legal notices.