component = assemblyFactory.createComponent();
component.setName(componentName);
component.setUnresolved(true);
composite.getComponents().add(component);
WebImplementationGenerated implementation = new WebImplementationGeneratedImpl();
implementation.setUnresolved(true);
// need generated impl to represent web modules
implementation.setWebInfo(webInfo);
component.setImplementation(implementation);
}
return component;
}