public abstract class AbstractInterruptibleASTTransformation extends ClassCodeVisitorSupport implements ASTTransformation, org.objectweb.asm.Opcodes
Base class for AST Transformations which will automatically throw an InterruptedException when some conditions are met.
Modifiers | Name | Description |
---|---|---|
protected static String |
CHECK_METHOD_START_MEMBER |
|
protected static String |
THROWN_EXCEPTION_TYPE |
|
protected boolean |
applyToAllClasses |
|
protected boolean |
applyToAllMembers |
|
protected boolean |
checkOnMethodStart |
|
protected SourceUnit |
source |
|
protected ClassNode |
thrownExceptionType |
Type Params | Return Type | Name and description |
---|---|---|
|
protected abstract Expression |
createCondition() Subclasses should implement this method to set the condition of the interruption statement |
|
protected Statement |
createInterruptStatement()
|
|
protected static boolean |
getBooleanAnnotationParameter(AnnotationNode node, String parameterName, boolean defaultValue) |
|
protected static ClassNode |
getClassAnnotationParameter(AnnotationNode node, String parameterName, ClassNode defaultValue) |
|
protected abstract String |
getErrorMessage() Subclasses should implement this method to provide good error resolution. |
|
protected SourceUnit |
getSourceUnit() |
|
protected static void |
internalError(String message) |
|
protected void |
setupTransform(AnnotationNode node) |
|
protected abstract ClassNode |
type() |
|
public void |
visit(ASTNode[] nodes, SourceUnit source) |
|
public final void |
visitDoWhileLoop(DoWhileStatement doWhileStatement) |
|
public final void |
visitForLoop(ForStatement forStatement) |
|
public final void |
visitWhileLoop(WhileStatement whileStatement) |
|
protected final Statement |
wrapBlock(Statement statement) Takes a statement and wraps it into a block statement which first element is the interruption check statement. |
Subclasses should implement this method to set the condition of the interruption statement
Subclasses should implement this method to provide good error resolution.
Takes a statement and wraps it into a block statement which first element is the interruption check statement.
statement
- the statement to be wrapped