* @throws IncorrectOperationException
*/
@Override
public PsiElement handleElementRename(String newElementName) throws IncorrectOperationException {
ASTNode node = templateString.getNode();
StringLiteralExpressionImpl se = new StringLiteralExpressionImpl(node);
String[] parts = templateString.getText().split(":");
StringBuilder sb = new StringBuilder(parts[0]).append(":").append(parts[1]).append(":");
sb.append(newElementName);
se.updateText(sb.toString());
this.templateString = se;
return templateString;
}