package jetbrains.mps.samples.lambdaCalculus.editor; /*Generated by MPS */ import jetbrains.mps.openapi.editor.cells.EditorCell; import org.jetbrains.mps.openapi.model.SNode; import jetbrains.mps.openapi.editor.EditorContext; import jetbrains.mps.openapi.editor.cells.CellActionType; import jetbrains.mps.editor.runtime.cells.AbstractCellAction; import jetbrains.mps.lang.smodel.generator.smodelAdapter.SLinkOperations; import jetbrains.mps.smodel.adapter.structure.MetaAdapterFactory; import jetbrains.mps.lang.smodel.generator.smodelAdapter.SNodeOperations; public class ParenthesisActions { public static void setCellActions(EditorCell editorCell, SNode node, EditorContext context) { editorCell.setAction(CellActionType.DELETE, new ParenthesisActions.ParenthesisActions_DELETE(node)); editorCell.setAction(CellActionType.BACKSPACE, new ParenthesisActions.ParenthesisActions_BACKSPACE(node)); } public static class ParenthesisActions_DELETE extends AbstractCellAction { /*package*/ SNode myNode; public ParenthesisActions_DELETE(SNode node) { this.myNode = node; } public void execute(EditorContext editorContext) { this.execute_internal(editorContext, this.myNode); } public void execute_internal(EditorContext editorContext, SNode node) { SNode expr = SLinkOperations.getTarget(node, MetaAdapterFactory.getContainmentLink(0x7c9e280794ad4afcL, 0xadf0aaee45eb2895L, 0x3735fdad52687b59L, 0x3735fdad52687b5aL, "expression")); SNodeOperations.replaceWithAnother(node, expr); } } public static class ParenthesisActions_BACKSPACE extends AbstractCellAction { /*package*/ SNode myNode; public ParenthesisActions_BACKSPACE(SNode node) { this.myNode = node; } public void execute(EditorContext editorContext) { this.execute_internal(editorContext, this.myNode); } public void execute_internal(EditorContext editorContext, SNode node) { SNode expr = SLinkOperations.getTarget(node, MetaAdapterFactory.getContainmentLink(0x7c9e280794ad4afcL, 0xadf0aaee45eb2895L, 0x3735fdad52687b59L, 0x3735fdad52687b5aL, "expression")); SNodeOperations.replaceWithAnother(node, expr); } } }