package jetbrains.mps.lang.quotation.editor; /*Generated by MPS */ import jetbrains.mps.editor.runtime.descriptor.AbstractEditorBuilder; import org.jetbrains.annotations.NotNull; import org.jetbrains.mps.openapi.model.SNode; import jetbrains.mps.openapi.editor.EditorContext; import jetbrains.mps.openapi.editor.cells.EditorCell; import jetbrains.mps.nodeEditor.cells.EditorCell_Collection; import jetbrains.mps.nodeEditor.cellLayout.CellLayout_Indent; import jetbrains.mps.nodeEditor.cells.EditorCell_Constant; import jetbrains.mps.openapi.editor.style.Style; import jetbrains.mps.editor.runtime.style.StyleImpl; import jetbrains.mps.editor.runtime.style.StyleAttributes; import jetbrains.mps.nodeEditor.cells.EditorCell_Property; import jetbrains.mps.nodeEditor.cells.ModelAccessor; import jetbrains.mps.lang.smodel.generator.smodelAdapter.SNodeOperations; import jetbrains.mps.util.EqualUtil; import jetbrains.mps.openapi.editor.cells.CellActionType; import jetbrains.mps.editor.runtime.cells.EmptyCellAction; /*package*/ class ListAntiquotation_InspectorBuilder_a extends AbstractEditorBuilder { @NotNull private SNode myNode; public ListAntiquotation_InspectorBuilder_a(@NotNull EditorContext context, @NotNull SNode node) { super(context); myNode = node; } @NotNull @Override public SNode getNode() { return myNode; } /*package*/ EditorCell createCell() { return createCollection_yxrtdc_a_0(); } private EditorCell createCollection_yxrtdc_a_0() { EditorCell_Collection editorCell = new EditorCell_Collection(getEditorContext(), myNode, new CellLayout_Indent()); editorCell.setCellId("Collection_yxrtdc_a_0"); editorCell.setBig(true); editorCell.setCellContext(getCellFactory().getCellContext()); editorCell.addEditorCell(createConstant_yxrtdc_a0_0()); editorCell.addEditorCell(createConstant_yxrtdc_b0()); editorCell.addEditorCell(createConstant_yxrtdc_c0()); editorCell.addEditorCell(createReadOnlyModelAccessor_yxrtdc_d0()); editorCell.addEditorCell(createConstant_yxrtdc_e0()); editorCell.addEditorCell(createReadOnlyModelAccessor_yxrtdc_f0()); return editorCell; } private EditorCell createConstant_yxrtdc_a0_0() { EditorCell_Constant editorCell = new EditorCell_Constant(getEditorContext(), myNode, "list antiquotation"); editorCell.setCellId("Constant_yxrtdc_a0_0"); Style style = new StyleImpl(); style.set(StyleAttributes.INDENT_LAYOUT_NEW_LINE, true); editorCell.getStyle().putAll(style); editorCell.setDefaultText(""); return editorCell; } private EditorCell createConstant_yxrtdc_b0() { EditorCell_Constant editorCell = new EditorCell_Constant(getEditorContext(), myNode, ""); editorCell.setCellId("Constant_yxrtdc_b0"); Style style = new StyleImpl(); style.set(StyleAttributes.SELECTABLE, false); style.set(StyleAttributes.INDENT_LAYOUT_NEW_LINE, true); editorCell.getStyle().putAll(style); editorCell.setDefaultText(""); return editorCell; } private EditorCell createConstant_yxrtdc_c0() { EditorCell_Constant editorCell = new EditorCell_Constant(getEditorContext(), myNode, "attributed node concept:"); editorCell.setCellId("Constant_yxrtdc_c0"); editorCell.setDefaultText(""); return editorCell; } private EditorCell createReadOnlyModelAccessor_yxrtdc_d0() { EditorCell_Property editorCell = EditorCell_Property.create(getEditorContext(), new ModelAccessor() { public String getText() { if ((SNodeOperations.getParent(myNode) != null)) { return SNodeOperations.getConcept(SNodeOperations.getParent(myNode)).getName(); } else { return ""; } } public void setText(String s) { } public boolean isValidText(String s) { return EqualUtil.equals(s, getText()); } }, myNode); editorCell.setAction(CellActionType.DELETE, EmptyCellAction.getInstance()); editorCell.setAction(CellActionType.BACKSPACE, EmptyCellAction.getInstance()); editorCell.setCellId("ReadOnlyModelAccessor_yxrtdc_d0"); Style style = new StyleImpl(); style.set(StyleAttributes.INDENT_LAYOUT_NEW_LINE, true); style.set(StyleAttributes.EDITABLE, false); editorCell.getStyle().putAll(style); return editorCell; } private EditorCell createConstant_yxrtdc_e0() { EditorCell_Constant editorCell = new EditorCell_Constant(getEditorContext(), myNode, "attributed node role in parent:"); editorCell.setCellId("Constant_yxrtdc_e0"); editorCell.setDefaultText(""); return editorCell; } private EditorCell createReadOnlyModelAccessor_yxrtdc_f0() { EditorCell_Property editorCell = EditorCell_Property.create(getEditorContext(), new ModelAccessor() { public String getText() { SNode parent = SNodeOperations.getParent(myNode); if ((parent != null)) { return parent.getRoleInParent(); } else { return ""; } } public void setText(String s) { } public boolean isValidText(String s) { return EqualUtil.equals(s, getText()); } }, myNode); editorCell.setAction(CellActionType.DELETE, EmptyCellAction.getInstance()); editorCell.setAction(CellActionType.BACKSPACE, EmptyCellAction.getInstance()); editorCell.setCellId("ReadOnlyModelAccessor_yxrtdc_f0"); Style style = new StyleImpl(); style.set(StyleAttributes.INDENT_LAYOUT_NEW_LINE, true); style.set(StyleAttributes.EDITABLE, false); editorCell.getStyle().putAll(style); return editorCell; } }