Package org.jresearch.flexess.models.xml

Examples of org.jresearch.flexess.models.xml.PermissionType


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setRef(PermissionType newRef) {
    PermissionType oldRef = ref;
    ref = newRef;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, XmlPackage.PERMISSION_REF_TYPE__REF, oldRef, ref));
  }
View Full Code Here


  @Override
  public Role rawConvert() throws LoadModelException {
    Role result = super.rawConvert();
    EList<PermissionRefType> permission = getXmlElement().getPermission();
    for (PermissionRefType refType : permission) {
      PermissionType ref = refType.getRef();
      EMFUtil.addPermission(result, new PermissionConverter(ref, getConverted()).convert());
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of org.jresearch.flexess.models.xml.PermissionType

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.