Package at.bestsolution.efxclipse.tooling.rrobot.model.task

Examples of at.bestsolution.efxclipse.tooling.rrobot.model.task.File


        if (result == null) result = caseExcludeableElementMixin(folder);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case TaskPackage.FILE: {
        File file = (File)theEObject;
        T result = caseFile(file);
        if (result == null) result = caseResource(file);
        if (result == null) result = caseExcludeableElementMixin(file);
        if (result == null) result = defaultCase(theEObject);
        return result;
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetFile(File newFile, NotificationChain msgs) {
    File oldFile = file;
    file = newFile;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, TaskPackage.COMPILATION_UNIT__FILE, oldFile, newFile);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.tooling.rrobot.model.task.File

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.