Package at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.model.anttasks.parameters

Examples of at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.model.anttasks.parameters.FileSet


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetFileset(FileSet newFileset, NotificationChain msgs) {
    FileSet oldFileset = fileset;
    fileset = newFileset;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, AntTasksPackage.JAR__FILESET, oldFileset, newFileset);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here


   */
  @Override
  protected T doSwitch(int classifierID, EObject theEObject) {
    switch (classifierID) {
      case ParametersPackage.FILE_SET: {
        FileSet fileSet = (FileSet)theEObject;
        T result = caseFileSet(fileSet);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case ParametersPackage.PLATFORM: {
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.model.anttasks.parameters.FileSet

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.