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

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


            text += inherit;
        } else if (element instanceof TypedElement) {
          text = QVTEditorUtilities
              .stringOfTypedElement((TypedElement) element);
        } else if (element instanceof NamedElement) {
          NamedElement namedElem = (NamedElement) element;
          text = namedElem.getName();
        }
      } catch (Exception e) {
        UiPlugin.getDefault().getLogger().log(
            java.util.logging.Level.WARNING, "Unknown error", e);
      }
View Full Code Here


        pattern = QVTEditorUtilities.patternOfOperation(op);
        description = QVTEditorUtilities.stringOfContext(op);
      } else

      if (obj instanceof NamedElement) {
        NamedElement elem = (NamedElement) obj;
        image_id = UiPlugin.getImage(UiPlugin.IMAGE_COMPLETION);
        pattern = elem.getName();
        name = elem.getName();
        if (elem instanceof Type) {
          Type t = (Type) elem;
          image_id = UiPlugin.getImage(UiPlugin.IMAGE_TYPE);
          if ((t.eContainer() != null)
              && (t.eContainer() instanceof NamedElement))
View Full Code Here

TOP

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

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.