fluentast-core / at.hschroedl.fluentast.ast.expression / FluentSuperMethodInvocation
FluentSuperMethodInvocation
class FluentSuperMethodInvocation : FluentExpression (source)
Used to build a SuperMethodInvocation.
Java:
super.someMethod();
JDT:
SuperMethodInvocation methodInvocation = ast.newSuperMethodInvocation();
methodInvocation.setName(ast.newSimpleName("myMethod"));
Fluentast:
SuperMethodInvocation methodInvocation = superMethod("myMethod").build(ast);
Functions
| build | fun build(ast: AST): SuperMethodInvocation |
Inherited Functions
| build | open fun build(): Expression |
| field | fun field(fieldName: String): FluentFieldAccess |
| index | fun index(expression: FluentExpression): FluentArrayAccess |
Generated using Dokka.