Package fr.tm.elibel.smartqvt.qvt.emof

Examples of fr.tm.elibel.smartqvt.qvt.emof.TypedElement


          if ((t.eContainer() != null)
              && (t.eContainer() instanceof NamedElement))
            description = ((NamedElement) t.eContainer()).getName();
        }
        if (elem instanceof TypedElement) {
          TypedElement typedElem = (TypedElement) elem;
          image_id = UiPlugin.getImage(UiPlugin.IMAGE_TYPE);
          if (typedElem.getType() != null) {
            if (typedElem.getType().getName() != null) {
              description = typedElem.getType().getName();
            }
            if (typedElem.getType() instanceof PrimitiveType)
              description = typedElem.getType().getClass()
                  .getSimpleName();
          }
        }
        if (elem instanceof ContextualProperty)
          image_id = UiPlugin.getImage(UiPlugin.IMAGE_PROPERTY);
View Full Code Here

TOP

Related Classes of fr.tm.elibel.smartqvt.qvt.emof.TypedElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.