* Triggers execution of the method on a target/method. * @param {!Element} target * @param {string} method * @param {?JsonObject} args * @param {?Element} source * @param {?Element} caller * @param {?ActionEventDef} event * @param {ActionTrust_Enum} trust
(target, method, args, source, caller, event, trust)
| 426 | * @param {ActionTrust_Enum} trust |
| 427 | */ |
| 428 | execute(target, method, args, source, caller, event, trust) { |
| 429 | const invocation = new ActionInvocation( |
| 430 | target, |
| 431 | method, |
| 432 | args, |
| 433 | source, |
| 434 | caller, |
| 435 | event, |
| 436 | trust |
| 437 | ); |
| 438 | this.invoke_(invocation); |
| 439 | } |
| 440 | |
| 441 | /** |
| 442 | * Installs action handler for the specified element. The action handler is |
no test coverage detected