List of usage examples for org.eclipse.jdt.core.dom AST newConstructorInvocation
public ConstructorInvocation newConstructorInvocation()
From source file:org.jboss.forge.roaster.model.impl.statements.ThisStatementImpl.java
License:Open Source License
@Override public ConstructorInvocation materialize(AST ast) { if (invoke != null) { return invoke; }// w ww.j av a2 s.com invoke = ast.newConstructorInvocation(); for (Argument argument : argumentList) { invoke.arguments().add(wireAndGetExpression(argument, this, ast)); } return invoke; }