RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.after(java.lang.String after) |
Rule is invoked AFTER point which is specified with parameter.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterInvoke(java.lang.String method) |
Rule is invoked after invocation of method within the trigger method.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterInvoke(java.lang.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(java.lang.String variable) |
Rule is invoked after point where method reads a variable.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterRead(java.lang.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(java.lang.String variable) |
Rule is invoked after point where method writes to a variable.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.afterWrite(java.lang.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(java.lang.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(java.lang.String method) |
Rule is invoked at point of invocation of method within the trigger method.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atInvoke(java.lang.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(java.lang.String variable) |
Rule is invoked at point where method reads a variable.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atRead(java.lang.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(java.lang.String variable) |
Rule is invoked at point where method writes to a variable.
|
RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.atWrite(java.lang.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(java.lang.String... bindClauses) |
Definition of bind clause.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.compile() |
Defines rule for being compiled.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.helper(java.lang.Class<?> helperClass) |
Byteman helper class to be used in rule definition.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.helper(java.lang.String helperClassName) |
Class name of Byteman helper class.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.imports(java.lang.String... imports) |
Setting module import definition for the rule.
|
RuleConstructor.ConditionClause |
RuleConstructor.ConditionClause.nocompile() |
Defines rule for not being compiled.
|
(package private) RuleConstructor.ConditionClause |
RuleConstructor.LocationClause.where(java.lang.String where) |
Location specifier definition.
|