Package org.eclipse.wst.sse.core.internal

Examples of org.eclipse.wst.sse.core.internal.PropagatingAdapterFactory


    fContributedFactories = list;

  }

  public INodeAdapterFactory copy() {
    PropagatingAdapterFactory clonedInstance = new PropagatingAdapterFactoryImpl(getAdapterKey(), isShouldRegisterAdapter());
    // clone this adapters specific list of adapter factories too
    if (fContributedFactories != null) {
     
      Iterator iterator = fContributedFactories.iterator();
      clonedInstance.setContributedFactories(new ArrayList());
      while (iterator.hasNext()) {
        INodeAdapterFactory existingFactory = (INodeAdapterFactory) iterator.next();
        clonedInstance.addContributedFactories(existingFactory.copy());
      }
    }
    return clonedInstance;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.sse.core.internal.PropagatingAdapterFactory

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.