package BHL2.structure; /*Generated by MPS */ import jetbrains.mps.smodel.runtime.ConceptPresentationAspectBase; import jetbrains.mps.smodel.runtime.ConceptPresentation; import org.jetbrains.annotations.Nullable; import org.jetbrains.mps.openapi.language.SAbstractConcept; import jetbrains.mps.smodel.runtime.ConceptPresentationBuilder; public class ConceptPresentationAspectImpl extends ConceptPresentationAspectBase { private ConceptPresentation props_A; private ConceptPresentation props_B; @Override @Nullable public ConceptPresentation getDescriptor(SAbstractConcept c) { StructureAspectDescriptor structureDescriptor = (StructureAspectDescriptor) myLanguageRuntime.getAspect(jetbrains.mps.smodel.runtime.StructureAspectDescriptor.class); switch (structureDescriptor.internalIndex(c)) { case LanguageConceptSwitch.A: if (props_A == null) { ConceptPresentationBuilder cpb = new ConceptPresentationBuilder(); props_A = cpb.create(); } return props_A; case LanguageConceptSwitch.B: if (props_B == null) { ConceptPresentationBuilder cpb = new ConceptPresentationBuilder(); props_B = cpb.create(); } return props_B; } return null; } }