Package | Description |
---|---|
org.jboss.byteman.contrib.dtest |
Modifier and Type | Method | Description |
---|---|---|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.after(String after) |
Rule is invoked
AFTER point which is specified with parameter. |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterInvoke(String method) |
Rule is invoked after invocation of method within the trigger method.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterInvoke(String method,
int occurencePosition) |
Rule is invoked after invocation of method within the trigger method
where
occurencePosition defines Nth textual occurrence
of the method invocation. |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterRead(String variable) |
Rule is invoked after point where method reads a variable.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterRead(String variable,
int occurencePosition) |
Rule is invoked after point where method reads a variable where
occurencePosition
defines Nth textual occurrence of the field access. |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterSynchronize() |
Rule is invoked after invocation of method within the trigger method.
Location specifier is set as AFTER SYNCHRONIZE . |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterSynchronize(int occurencePosition) |
Rule is invoked after invocation of method within the trigger method
where
occurencePosition defines Nth textual occurrence
of the method invocation. |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterWrite(String variable) |
Rule is invoked after point where method writes to a variable.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterWrite(String variable,
int occurencePosition) |
Rule is invoked after point where method writes to a variable where
occurencePosition
defines Nth textual occurrence of the field write. |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.at(String at) |
Rule is invoked
AT point which is specified with parameter. |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atEntry() |
Rule is invoked at entry point of method.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atExceptionExit() |
Identifies the point where a method returns control back to its caller via
unhandled exceptional control flow.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atExit() |
Rule is invoked at exit point of method.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atInvoke(String method) |
Rule is invoked at point of invocation of method within the trigger method.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atInvoke(String method,
int occurencePosition) |
Rule is invoked at point of invocation of method within the trigger method
where
occurencePosition defines Nth textual occurrence
of the method invocation. |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atLine(int line) |
Rule is invoked at specific line of code
within the method.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atRead(String variable) |
Rule is invoked at point where method reads a variable.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atRead(String variable,
int occurencePosition) |
Rule is invoked at point where method reads a variable
where
occurencePosition defines Nth
textual occurrence of the field access. |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atSynchronize() |
Rule is invoked at entry of synchronization block in the target method.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atSynchronize(int occurencePosition) |
Rule is invoked at point of invocation of method within the trigger method
where
occurencePosition defines Nth textual
occurrence of the method invocation. |
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atThrow() |
Identifies a throw operation within the trigger method.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atThrow(int occurencePosition) |
Identifies a throw operation within the trigger method,
specified with count as Nth textual occurrence of a throw
inside of the method defining only that occurrence to trigger
execution of the rule.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atWrite(String variable) |
Rule is invoked at point where method writes to a variable.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atWrite(String variable,
int occurencePosition) |
Rule is invoked at point where method writes to a variable where
occurencePosition
defines Nth textual occurrence of the field write. |
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.bind(String... bindClauses) |
Definition of bind clause.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.compile() |
Defines rule for being compiled.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.helper(Class<?> helperClass) |
Byteman helper class to be used in rule definition.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.helper(String helperClassName) |
Class name of Byteman helper class.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.imports(String... imports) |
Setting module import definition for the rule.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.nocompile() |
Defines rule for not being compiled.
|
Copyright © 2018. All rights reserved.