blob: 9d15fa9858fead6ff346221d02242365f1291ae2 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* User: anna
* Date: 13-Jul-2007
*/
package com.intellij.ide.util.projectWizard;
import com.intellij.openapi.module.ModuleType;
import com.intellij.openapi.options.ConfigurationException;
import com.intellij.openapi.roots.ModifiableRootModel;
public class EmptyModuleBuilder extends ModuleBuilder {
@Override
public boolean isOpenProjectSettingsAfter() {
return true;
}
@Override
public boolean canCreateModule() {
return false;
}
@Override
public void setupRootModel(ModifiableRootModel modifiableRootModel) throws ConfigurationException {
//do nothing
}
@Override
public ModuleType getModuleType() {
return ModuleType.EMPTY;
}
@Override
public String getPresentableName() {
return "Empty Project";
}
@Override
public String getGroupName() {
return getPresentableName();
}
@Override
public boolean isTemplateBased() {
return true;
}
@Override
public String getDescription() {
return "Empty project without modules. Use it to create free-style module structure.";
}
}