blob: 0af8706ab38c3e4b4b03772314e4984abc51479c [file] [log] [blame]
/*
* Copyright 2000-2013 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.
*/
package com.intellij.ide.projectView.actions;
import com.intellij.icons.AllIcons;
import com.intellij.openapi.actionSystem.Presentation;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.roots.ContentEntry;
import com.intellij.openapi.roots.SourceFolder;
import com.intellij.openapi.vfs.VirtualFile;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.jps.model.java.JavaModuleSourceRootTypes;
import org.jetbrains.jps.model.java.JavaSourceRootProperties;
import org.jetbrains.jps.model.java.JavaSourceRootType;
/**
* @author nik
*/
public class UnmarkGeneratedSourceRootAction extends MarkRootActionBase {
public UnmarkGeneratedSourceRootAction() {
Presentation presentation = getTemplatePresentation();
presentation.setIcon(AllIcons.Modules.SourceRoot);
presentation.setText("Unmark Generated Sources Root");
presentation.setDescription("Mark directory as an ordinary source root");
}
@Override
protected boolean isEnabled(@NotNull RootsSelection selection, @NotNull Module module) {
for (SourceFolder root : selection.mySelectedRoots) {
JavaSourceRootProperties properties = root.getJpsElement().getProperties(JavaModuleSourceRootTypes.SOURCES);
if (properties != null && properties.isForGeneratedSources()) {
return true;
}
}
return false;
}
@Override
protected void modifyRoots(VirtualFile vFile, ContentEntry entry) {
entry.addSourceFolder(vFile, JavaSourceRootType.SOURCE);
}
}