*/
String thePropertyKey = method.getName().toString().substring(3);
StringLiteral literal = ast.newStringLiteral();
literal.setLiteralValue(thePropertyKey);
methodInvocation.arguments().add(literal);
methodInvocation.arguments().add(paramName.copySubtree(newMethod.getAST(), paramName));
ExpressionStatement expressionStatement = ast.newExpressionStatement(methodInvocation);
block.statements().add(expressionStatement);
newMethod.setBody(block); // add the block to the method