Package org.eclipse.wst.common.componentcore.internal.flat

Examples of org.eclipse.wst.common.componentcore.internal.flat.FlatVirtualComponent


   
    if (project != null) {
      IVirtualComponent component = ComponentCore.createComponent(project);
      if (component != null) {
        //FlatVirtualComponent will build the project structure from the definition in .component
        FlatVirtualComponent flatVirtualComponent = new FlatVirtualComponent(component, getOptions());
        IResourceFilter filter = new DynamicResourceFilter(getInclusions(), getExclusions());
        cachedRoot = new CompositeVirtualFolder(flatVirtualComponent, ROOT, filter);
      }
    }
    lastCacheUpdate = System.currentTimeMillis();
View Full Code Here

TOP

Related Classes of org.eclipse.wst.common.componentcore.internal.flat.FlatVirtualComponent

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.