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

Examples of org.eclipse.wst.common.componentcore.internal.resources.VirtualArchiveComponent


    }
    return null;
  }
 
  private IVirtualReference createReference(File underlyingFile, IPath path) {
    VirtualArchiveComponent archive = new VirtualArchiveComponent(project, VirtualArchiveComponent.LIBARCHIVETYPE + Path.SEPARATOR + underlyingFile.getAbsolutePath(), path);
    IVirtualReference ref = ComponentCore.createReference(flatVirtualComponent.getComponent(), archive);
    ref.setArchiveName(archive.getArchivePath().lastSegment());
    ref.setRuntimePath(path);
    return ref;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.common.componentcore.internal.resources.VirtualArchiveComponent

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.