Package eu.admire.dispel.references

Examples of eu.admire.dispel.references.DomainTypeReference


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetDomainType(DomainTypeReference newDomainType, NotificationChain msgs) {
    DomainTypeReference oldDomainType = domainType;
    domainType = newDomainType;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ParametersPackage.PROCESSING_ELEMENT_PARAMETER__DOMAIN_TYPE, oldDomainType, newDomainType);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here


        DType dt = input.getDType();
       
        if (dt instanceof SimpleDType) {
         
          SimpleDType sd = (SimpleDType) dt;
          DomainTypeReference dtyperef =
            ReferencesFactory.eINSTANCE.createDomainTypeReference();
         
          DomainTypeDefinition def = TypesFactory.eINSTANCE.createDomainTypeDefinition();
          def.setName(sd.toString().toString());
         
          dtyperef.setTarget(def);
          inCon.setDomainType(dtyperef);
        }
       

View Full Code Here

    if (param.getDomainType() != null
        && (param.getDomainType()
            instanceof DomainTypeReference)) {

      DomainTypeReference dr =
        (DomainTypeReference) param.getDomainType();
      ret = ret + "::" +
        ((DomainTypeDefinition) dr.getTarget()).getName();
    }

    return ret;
  }
View Full Code Here

TOP

Related Classes of eu.admire.dispel.references.DomainTypeReference

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.