See: Description
Interface | Description |
---|---|
EclipseAstInstrumentationStrategy |
Defines how to instrument a code section by providing AST statements to insert before
and after the section.
|
EclipseAstInstrumentor.InstrumentationResultFileProvider |
Appoints a file the instrumented source code of a Java type shall be written to.
|
Class | Description |
---|---|
BreakingStatementDetector |
Determines whether an AST node contains a statement that could leave the current
control flow, like a
ReturnStatement or ThrowStatement . |
EclipseAstInstrumentor |
Instruments code sections using Eclipse’s JDT Abstract Syntax Tree.
|
EclipseStatementCreationHelper |
Convenience class to easily generate instrumentation code.
|
NotRecursingAstVisitor |
An
ASTVisitor that does not recursively traverse the visited node’s subtree(s). |
Exception | Description |
---|---|
InstrumentationImpossibleException |
Thrown if instrumentation of source code is not logically possible.
|