Examples of OverlayVirtualComponent


Examples of org.eclipse.m2e.wtp.overlay.internal.modulecore.OverlayVirtualComponent

* @author Fred Bricon
*/
public class OverlayComponentCore {
 
  public static IOverlayVirtualComponent createOverlayComponent(IProject aProject) {
    return new OverlayVirtualComponent(aProject);
  }
View Full Code Here

Examples of org.eclipse.m2e.wtp.overlay.internal.modulecore.OverlayVirtualComponent

      p = ResourcesPlugin.getWorkspace().getRoot().getProject(name);     
    }
  if (p == null) {
    throw new IllegalArgumentException(NLS.bind(Messages.OverlayReferenceResolver_Not_Workspace_Project, name));
  }
  return new OverlayVirtualComponent(p);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.