package jetbrains.mps.editor.runtime.impl.cellActions; /*Generated by MPS */ import org.jetbrains.mps.openapi.model.SNode; import jetbrains.mps.openapi.editor.EditorContext; public class CellAction_CommentOrUncommentNode extends CellAction_CommentOrUncomment { private final SNode myNode; public CellAction_CommentOrUncommentNode(SNode node) { myNode = node; } protected SNode getNodeToProcess(EditorContext editorContext) { return myNode; } }