blob: f11e2295eaecbfcf91ad976514c3e52e21501ba8 [file] [log] [blame]
/*
* Copyright 2000-2010 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.openapi.roots.ui.configuration.classpath;
import com.intellij.openapi.roots.*;
import com.intellij.openapi.roots.ui.configuration.projectRoot.StructureConfigurableContext;
import org.jetbrains.annotations.Nullable;
/**
* @author nik
*/
class ClasspathTableItem<T extends OrderEntry> {
@Nullable protected final T myEntry;
private final boolean myRemovable;
@Nullable
public static ClasspathTableItem<?> createItem(OrderEntry orderEntry, StructureConfigurableContext context) {
if (orderEntry instanceof JdkOrderEntry) {
return new ClasspathTableItem<OrderEntry>(orderEntry, false);
}
else if (orderEntry instanceof LibraryOrderEntry) {
return createLibItem((LibraryOrderEntry)orderEntry, context);
}
else if (orderEntry instanceof ModuleOrderEntry) {
return new ClasspathTableItem<OrderEntry>(orderEntry, true);
}
else if (orderEntry instanceof ModuleSourceOrderEntry) {
return new ClasspathTableItem<OrderEntry>(orderEntry, false);
}
return null;
}
public static ClasspathTableItem<LibraryOrderEntry> createLibItem(final LibraryOrderEntry orderEntry, final StructureConfigurableContext context) {
return new LibraryItem(orderEntry, context);
}
protected ClasspathTableItem(@Nullable T entry, boolean removable) {
myEntry = entry;
myRemovable = removable;
}
public final boolean isExportable() {
return myEntry instanceof ExportableOrderEntry;
}
public final boolean isExported() {
return myEntry instanceof ExportableOrderEntry && ((ExportableOrderEntry)myEntry).isExported();
}
public final void setExported(boolean isExported) {
if (myEntry instanceof ExportableOrderEntry) {
((ExportableOrderEntry)myEntry).setExported(isExported);
}
}
@Nullable
public final DependencyScope getScope() {
return myEntry instanceof ExportableOrderEntry ? ((ExportableOrderEntry) myEntry).getScope() : null;
}
public final void setScope(DependencyScope scope) {
if (myEntry instanceof ExportableOrderEntry) {
((ExportableOrderEntry) myEntry).setScope(scope);
}
}
@Nullable
public final T getEntry() {
return myEntry;
}
public boolean isRemovable() {
return myRemovable;
}
public boolean isEditable() {
return false;
}
@Nullable
public String getTooltipText() {
return null;
}
}