当前位置: 首页>>代码示例>>Java>>正文


Java MetaIdFactory类代码示例

本文整理汇总了Java中jetbrains.mps.smodel.adapter.ids.MetaIdFactory的典型用法代码示例。如果您正苦于以下问题:Java MetaIdFactory类的具体用法?Java MetaIdFactory怎么用?Java MetaIdFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MetaIdFactory类属于jetbrains.mps.smodel.adapter.ids包,在下文中一共展示了MetaIdFactory类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getSpecifiedReferences

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
@Override
protected Map<SReferenceLink, ReferenceConstraintsDescriptor> getSpecifiedReferences() {
  Map<SReferenceLink, ReferenceConstraintsDescriptor> references = new HashMap<SReferenceLink, ReferenceConstraintsDescriptor>();
  references.put(MetaAdapterFactory.getReferenceLink(0x8dc4b25f4c49400eL, 0xac370fd230db702cL, 0x48a9ceab914f739aL, 0x48a9ceab914f73b5L, "instantie"), new BaseReferenceConstraintsDescriptor(MetaIdFactory.refId(0x8dc4b25f4c49400eL, 0xac370fd230db702cL, 0x48a9ceab914f739aL, 0x48a9ceab914f73b5L), this) {
    @Override
    public boolean hasOwnScopeProvider() {
      return true;
    }
    @Nullable
    @Override
    public ReferenceScopeProvider getScopeProvider() {
      return new BaseScopeProvider() {
        @Override
        public SNodeReference getSearchScopeValidatorNode() {
          return breakingNode_9n8a10_a0a0a0a0a1a0b0a1a2;
        }
        @Override
        public Scope createScope(final IOperationContext operationContext, final ReferenceConstraintsContext _context) {
          return SimpleRoleScope.forNamedElements(SNodeOperations.getNodeAncestor(_context.getContextNode(), MetaAdapterFactory.getConcept(0x8dc4b25f4c49400eL, 0xac370fd230db702cL, 0x36e4484084e2ca1aL, "ObjectiefRecht.structure.VoorbeeldenMetInstanties"), false, false), MetaAdapterFactory.getContainmentLink(0x8dc4b25f4c49400eL, 0xac370fd230db702cL, 0x36e4484084e2ca1aL, 0x36e4484084e2ca1bL, "instanties"));
        }
      };
    }
  });
  return references;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:26,代码来源:FeitVerwoording_Constraints.java

示例2: getSpecifiedProperties

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
@Override
protected Map<SProperty, PropertyConstraintsDescriptor> getSpecifiedProperties() {
  Map<SProperty, PropertyConstraintsDescriptor> properties = new HashMap<SProperty, PropertyConstraintsDescriptor>();
  properties.put(MetaAdapterFactory.getProperty(0x8dc4b25f4c49400eL, 0xac370fd230db702cL, 0x4916e0625ce15ba0L, 0x67229afa6a0ae77aL, "conceptnummer"), new BasePropertyConstraintsDescriptor(MetaIdFactory.propId(0x8dc4b25f4c49400eL, 0xac370fd230db702cL, 0x4916e0625ce15ba0L, 0x67229afa6a0ae77aL), this) {
    @Override
    public boolean hasOwnGetter() {
      return true;
    }
    @Override
    public Object getValue(SNode node) {
      String propertyName = "conceptnummer";
      if (isEmptyString(SPropertyOperations.getString(node, MetaAdapterFactory.getProperty(0x8dc4b25f4c49400eL, 0xac370fd230db702cL, 0x4916e0625ce15ba0L, 0x67229afa6a0ae77aL, "conceptnummer")))) {
      }
      return SPropertyOperations.getString(node, MetaAdapterFactory.getProperty(0x8dc4b25f4c49400eL, 0xac370fd230db702cL, 0x4916e0625ce15ba0L, 0x67229afa6a0ae77aL, "conceptnummer"));
    }
  });
  return properties;
}
 
开发者ID:diederikd,项目名称:DeBrug,代码行数:19,代码来源:Concept_Constraints.java

示例3: getSpecifiedReferences

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
@Override
protected Map<SReferenceLink, ReferenceConstraintsDescriptor> getSpecifiedReferences() {
  Map<SReferenceLink, ReferenceConstraintsDescriptor> references = new HashMap<SReferenceLink, ReferenceConstraintsDescriptor>();
  references.put(MetaAdapterFactory.getReferenceLink(0x4bc750d756884f52L, 0xb7d5b263a3393a24L, 0x5b6b060cf3fde68dL, 0x5b6b060cf3fe08f3L, "event"), new BaseReferenceConstraintsDescriptor(MetaIdFactory.refId(0x4bc750d756884f52L, 0xb7d5b263a3393a24L, 0x5b6b060cf3fde68dL, 0x5b6b060cf3fe08f3L), this) {
    @Override
    public boolean hasOwnScopeProvider() {
      return true;
    }
    @Nullable
    @Override
    public ReferenceScopeProvider getScopeProvider() {
      return new BaseScopeProvider() {
        @Override
        public SNodeReference getSearchScopeValidatorNode() {
          return breakingNode_9zid8j_a0a0a0a0a1a0b0a1a2;
        }
        @Override
        public Scope createScope(final IOperationContext operationContext, final ReferenceConstraintsContext _context) {
          {
            Scope scope = Scope.getScope(_context.getContextNode(), _context.getContainmentLink(), _context.getPosition(), MetaAdapterFactory.getConcept(0x4bc750d756884f52L, 0xb7d5b263a3393a24L, 0x5b6b060cf3fde30cL, "jetbrains.mps.samples.VoiceMenu.structure.Event"));
            return (scope == null ? new EmptyScope() : scope);
          }
        }
      };
    }
  });
  return references;
}
 
开发者ID:vaclav,项目名称:voicemenu,代码行数:29,代码来源:Activity_Constraints.java

示例4: getSpecifiedReferences

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
@Override
protected Map<SReferenceLink, ReferenceConstraintsDescriptor> getSpecifiedReferences() {
  Map<SReferenceLink, ReferenceConstraintsDescriptor> references = new HashMap<SReferenceLink, ReferenceConstraintsDescriptor>();
  references.put(MetaAdapterFactory.getReferenceLink(0x4bc750d756884f52L, 0xb7d5b263a3393a24L, 0x5b6b060cf3fde68dL, 0x5b6b060cf3fe08f3L, "event"), new BaseReferenceConstraintsDescriptor(MetaIdFactory.refId(0x4bc750d756884f52L, 0xb7d5b263a3393a24L, 0x5b6b060cf3fde68dL, 0x5b6b060cf3fe08f3L), this) {
    @Override
    public boolean hasOwnScopeProvider() {
      return true;
    }
    @Nullable
    @Override
    public ReferenceScopeProvider getScopeProvider() {
      return new BaseScopeProvider() {
        @Override
        public SNodeReference getSearchScopeValidatorNode() {
          return breakingNode_9zid8j_a0a0a0a0a1a0b0a1a2;
        }
        @Override
        public Scope createScope(final IOperationContext operationContext, final ReferenceConstraintsContext _context) {
          {
            Scope scope = Scope.getScope(_context.getContextNode(), _context.getContainmentLink(), _context.getPosition(), MetaAdapterFactory.getConcept(0xe2a803a4d4b843ebL, 0xb458517effd2a87fL, 0x5b6b060cf3fde30cL, "jetbrains.mps.samples.VoiceMenu.structure.Event"));
            return (scope == null ? new EmptyScope() : scope);
          }
        }
      };
    }
  });
  return references;
}
 
开发者ID:vaclav,项目名称:voicemenu,代码行数:29,代码来源:Activity_Constraints.java

示例5: createDescriptorForFormal_parameter_list_2

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForFormal_parameter_list_2() {
  return new ConceptDescriptorBuilder("CSharp.structure.Formal_parameter_list_2", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fc2L)).super_("CSharp.structure.BaseConcept").version(1).super_(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L)).parents("CSharp.structure.BaseConcept", "CSharp.structure.IFormal_parameter_list").parentIds(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fc0L)).childDescriptors(new ConceptDescriptorBuilder.Link(0x70aadf795f72dbL, "Fixed_parameters_1", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f70b2L), false, false, false, new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320859")), new ConceptDescriptorBuilder.Link(0x70aadf795f72dcL, "Formal_parameter_list_block_2_1_2", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f72acL), true, false, false, new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320860"))).children(new String[]{"Fixed_parameters_1", "Formal_parameter_list_block_2_1_2"}, new boolean[]{false, false}).alias("Formal_parameter_list_2", "Formal_parameter_list").sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320066")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例6: createDescriptorForIEmbedded_statement

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForIEmbedded_statement() {
  return new ConceptDescriptorBuilder("CSharp.structure.IEmbedded_statement", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7276L)).version(1).interface_().sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320758")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例7: createDescriptorForIMember_initializer_block_1_1

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForIMember_initializer_block_1_1() {
  return new ConceptDescriptorBuilder("CSharp.structure.IMember_initializer_block_1_1", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f705eL)).version(1).interface_().sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320222")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例8: createDescriptorForEvent_accessor_declarations_block_1_1_1

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForEvent_accessor_declarations_block_1_1_1() {
  return new ConceptDescriptorBuilder("CSharp.structure.Event_accessor_declarations_block_1_1_1", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f70c4L)).super_("CSharp.structure.BaseConcept").version(1).super_(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L)).parents("CSharp.structure.BaseConcept", "CSharp.structure.IEvent_accessor_declarations_block_1_1").parentIds(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f70c3L)).childDescriptors(new ConceptDescriptorBuilder.Link(0x70aadf795f73e4L, "Block_1", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7032L), false, false, false, new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182321124")), new ConceptDescriptorBuilder.Link(0x70aadf795f73e5L, "Remove_accessor_declaration_2", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f71c8L), false, false, false, new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182321125"))).children(new String[]{"Block_1", "Remove_accessor_declaration_2"}, new boolean[]{false, false}).alias("add", "Event_accessor_declarations_block_1_1").sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320324")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例9: createDescriptorForUnary_expression_9

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForUnary_expression_9() {
  return new ConceptDescriptorBuilder("CSharp.structure.Unary_expression_9", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7282L)).super_("CSharp.structure.BaseConcept").version(1).super_(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L)).parents("CSharp.structure.BaseConcept", "CSharp.structure.IUnary_expression").parentIds(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7279L)).childDescriptors(new ConceptDescriptorBuilder.Link(0x70aadf795f7536L, "Unary_expression_1", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7279L), false, false, false, new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182321462"))).children(new String[]{"Unary_expression_1"}, new boolean[]{false}).alias("await", "Unary_expression").sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320770")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例10: createDescriptorForInterpolated_regular_string_part_3

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForInterpolated_regular_string_part_3() {
  return new ConceptDescriptorBuilder("CSharp.structure.Interpolated_regular_string_part_3", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7232L)).super_("CSharp.structure.BaseConcept").version(1).super_(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L)).parents("CSharp.structure.BaseConcept", "CSharp.structure.IInterpolated_regular_string_part").parentIds(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f722fL)).propertyDescriptors(new ConceptDescriptorBuilder.Prop(0x70aadf795f74cbL, "REGULAR_CHAR_INSIDE_1", new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182321355"))).properties("REGULAR_CHAR_INSIDE_1").alias("Regular_char_inside interpolated_regular_string_part", "Interpolated_regular_string_part").sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320690")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例11: createDescriptorForPredefined_type_13

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForPredefined_type_13() {
  return new ConceptDescriptorBuilder("CSharp.structure.Predefined_type_13", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f701fL)).super_("CSharp.structure.BaseConcept").version(1).super_(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L)).parents("CSharp.structure.BaseConcept", "CSharp.structure.IPredefined_type", "CSharp.structure.IPrimary_expression_start").parentIds(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7012L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f710aL)).alias("uint", "Predefined_type").sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320159")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例12: createDescriptorForInterface_member_declaration_block_1_2_2

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForInterface_member_declaration_block_1_2_2() {
  return new ConceptDescriptorBuilder("CSharp.structure.Interface_member_declaration_block_1_2_2", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7245L)).super_("CSharp.structure.BaseConcept").version(1).super_(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L)).parents("CSharp.structure.BaseConcept", "CSharp.structure.IInterface_member_declaration_block_1_2").parentIds(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7243L)).childDescriptors(new ConceptDescriptorBuilder.Link(0x70aadf795f74e5L, "Identifier_1", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7213L), false, false, false, new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182321381")), new ConceptDescriptorBuilder.Link(0x70aadf795f74e6L, "Interface_accessors_2", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fe9L), false, false, false, new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182321382"))).children(new String[]{"Identifier_1", "Interface_accessors_2"}, new boolean[]{false, false}).alias("{ }", "Interface_member_declaration_block_1_2").sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320709")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例13: createDescriptorForInterface_accessors_block_1_1_1

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForInterface_accessors_block_1_1_1() {
  return new ConceptDescriptorBuilder("CSharp.structure.Interface_accessors_block_1_1_1", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f70e3L)).super_("CSharp.structure.BaseConcept").version(1).super_(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L)).parents("CSharp.structure.BaseConcept", "CSharp.structure.IInterface_accessors_block_1_1").parentIds(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f70e2L)).childDescriptors(new ConceptDescriptorBuilder.Link(0x70aadf795f7407L, "Interface_accessors_block_1_2_1", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f70e5L), true, false, false, new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182321159"))).children(new String[]{"Interface_accessors_block_1_2_1"}, new boolean[]{false}).alias("get ;", "Interface_accessors_block_1_1").sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320355")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例14: createDescriptorForAccessor_modifier_5

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForAccessor_modifier_5() {
  return new ConceptDescriptorBuilder("CSharp.structure.Accessor_modifier_5", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f728bL)).super_("CSharp.structure.BaseConcept").version(1).super_(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L)).parents("CSharp.structure.BaseConcept", "CSharp.structure.IAccessor_modifier").parentIds(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7286L)).alias("internal protected", "Accessor_modifier").sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320779")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java

示例15: createDescriptorForKeyword_57

import jetbrains.mps.smodel.adapter.ids.MetaIdFactory; //导入依赖的package包/类
private static ConceptDescriptor createDescriptorForKeyword_57() {
  return new ConceptDescriptorBuilder("CSharp.structure.Keyword_57", MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7187L)).super_("CSharp.structure.BaseConcept").version(1).super_(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L)).parents("CSharp.structure.BaseConcept", "CSharp.structure.IKeyword", "CSharp.structure.IGlobal_attribute_target", "CSharp.structure.IAttribute_target").parentIds(MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f6fb0L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f714eL), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f7297L), MetaIdFactory.conceptId(0x5f522167449a4486L, 0x94654f30de6e5cecL, 0x70aadf795f72b0L)).alias("sizeof", "Keyword").sourceNode(new SNodePointer("r:66408d77-ffb3-4326-9a15-5d799ccaf950(CSharp.structure)", "31713074182320519")).create();
}
 
开发者ID:vaclav,项目名称:MPS_CSharp,代码行数:4,代码来源:StructureAspectDescriptor.java


注:本文中的jetbrains.mps.smodel.adapter.ids.MetaIdFactory类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。