package jetbrains.mps.ide.httpsupport.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.SPropertyOperations; import jetbrains.mps.smodel.adapter.structure.MetaAdapterFactory; import jetbrains.mps.editor.runtime.selection.SelectionUtil; import jetbrains.mps.editor.runtime.cells.CellIdManager; public class QueryParameter_Actions { public static void setCellActions(EditorCell editorCell, SNode node, EditorContext context) { editorCell.setAction(CellActionType.DELETE, new QueryParameter_Actions.QueryParameter_Actions_DELETE(node)); editorCell.setAction(CellActionType.BACKSPACE, new QueryParameter_Actions.QueryParameter_Actions_BACKSPACE(node)); } public static class QueryParameter_Actions_DELETE extends AbstractCellAction { /*package*/ SNode myNode; public QueryParameter_Actions_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) { SPropertyOperations.set(node, MetaAdapterFactory.getProperty(0x817e4e70961e4a95L, 0x98a115e9f32231f1L, 0x205f4376c585b439L, 0x205f4376c585b43dL, "required"), "" + (false)); SelectionUtil.selectCell(editorContext, node, "*" + CellIdManager.createPropertyId("name")); } @Override public boolean canExecute(EditorContext editorContext) { return this.canExecute_internal(editorContext, this.myNode); } public boolean canExecute_internal(EditorContext editorContext, SNode node) { return SPropertyOperations.getBoolean(node, MetaAdapterFactory.getProperty(0x817e4e70961e4a95L, 0x98a115e9f32231f1L, 0x205f4376c585b439L, 0x205f4376c585b43dL, "required")); } } public static class QueryParameter_Actions_BACKSPACE extends AbstractCellAction { /*package*/ SNode myNode; public QueryParameter_Actions_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) { SPropertyOperations.set(node, MetaAdapterFactory.getProperty(0x817e4e70961e4a95L, 0x98a115e9f32231f1L, 0x205f4376c585b439L, 0x205f4376c585b43dL, "required"), "" + (false)); SelectionUtil.selectCell(editorContext, node, "*" + CellIdManager.createPropertyId("name")); } @Override public boolean canExecute(EditorContext editorContext) { return this.canExecute_internal(editorContext, this.myNode); } public boolean canExecute_internal(EditorContext editorContext, SNode node) { return SPropertyOperations.getBoolean(node, MetaAdapterFactory.getProperty(0x817e4e70961e4a95L, 0x98a115e9f32231f1L, 0x205f4376c585b439L, 0x205f4376c585b43dL, "required")); } } }