コード例 #1
0
 @Override
 public PsiLanguageInjectionHost updateText(@NotNull String text) {
   ASTNode valueNode = getNode().getFirstChildNode();
   assert valueNode instanceof LeafElement;
   ((LeafElement) valueNode).replaceWithText(text);
   return this;
 }