private EditorCell createReferencePresentation_kasd0f_a0b1a0() {
   EditorCell_Property editorCell =
       EditorCell_RefPresentation.create(
           getEditorContext(), myNode, myReferencingNode, "migrateTo");
   editorCell.setCellId("ReferencePresentation_kasd0f_a0b1a0");
   return editorCell;
 }
 private EditorCell createReferencePresentation_dfgzix_a0a0() {
   EditorCell_Property editorCell =
       EditorCell_RefPresentation.create(
           getEditorContext(), myNode, myReferencingNode, "methodDeclaration");
   editorCell.setCellId("ReferencePresentation_dfgzix_a0a0");
   Style style = new StyleImpl();
   style.set(StyleAttributes.AUTO_DELETABLE, true);
   editorCell.getStyle().putAll(style);
   return editorCell;
 }
Esempio n. 3
0
 private EditorCell createReferencePresentation_91bvrs_a0a0(
     EditorContext editorContext, SNode node) {
   EditorCell_Property editorCell =
       EditorCell_RefPresentation.create(editorContext, node, this.getRefNode(), "classifier");
   editorCell.setCellId("ReferencePresentation_91bvrs_a0a0");
   if (editorCell.getRole() == null) {
     editorCell.setReferenceCell(true);
     editorCell.setRole("classifier");
   }
   return editorCell;
 }
 private EditorCell createReferencePresentation_clzyhh_a0a0(
     EditorContext editorContext, SNode node) {
   EditorCell_Property editorCell =
       EditorCell_RefPresentation.create(editorContext, node, this.getRefNode(), "target");
   editorCell.setCellId("ReferencePresentation_clzyhh_a0a0");
   if (editorCell.getRole() == null) {
     editorCell.setReferenceCell(true);
     editorCell.setRole("target");
   }
   Style style = new StyleImpl();
   style.set(
       StyleAttributes.TEXT_COLOR,
       StyleRegistry.getInstance().getSimpleColor(MPSColors.DARK_BLUE));
   style.set(StyleAttributes.UNDERLINED, true);
   style.set(StyleAttributes.AUTO_DELETABLE, true);
   editorCell.getStyle().putAll(style);
   return editorCell;
 }