use of com.intellij.ide.util.newProjectWizard.impl.FrameworkSupportModelBase in project intellij-community by JetBrains.
the class CloudModuleBuilder method getFrameworkSupportModel.
public FrameworkSupportModelBase getFrameworkSupportModel() {
if (myFrameworkSupportModel == null) {
final LibrariesContainer librariesContainer = LibrariesContainerFactory.createContainer(myProject);
myFrameworkSupportModel = new FrameworkSupportModelBase(myProject, this, librariesContainer) {
@NotNull
@Override
public String getBaseDirectoryForLibrariesPath() {
return StringUtil.notNullize(getContentEntryPath());
}
};
}
return myFrameworkSupportModel;
}
Aggregations