blob: 612d2a7a7987c4d38b7d58b4342ca99280911c8d [file] [log] [blame]
/*
* Copyright (C) 2014 The Android Open Source Project
*
* 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.android.tools.idea.navigator.nodes;
import com.android.SdkConstants;
import com.intellij.ide.projectView.PresentationData;
import com.intellij.ide.projectView.ViewSettings;
import com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode;
import com.intellij.ide.util.treeView.AbstractTreeNode;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.ui.Queryable;
import com.intellij.psi.PsiDirectory;
import com.intellij.ui.SimpleTextAttributes;
import org.jetbrains.android.facet.IdeaSourceProvider;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class AndroidPsiDirectoryNode extends PsiDirectoryNode {
private final IdeaSourceProvider mySourceProvider;
public AndroidPsiDirectoryNode(@NotNull Project project,
@NotNull PsiDirectory directory,
@NotNull ViewSettings settings,
@Nullable IdeaSourceProvider sourceProvider) {
super(project, directory, settings);
mySourceProvider = sourceProvider;
}
@Override
protected void updateImpl(PresentationData data) {
super.updateImpl(data);
if (mySourceProvider != null && !SdkConstants.FD_MAIN.equals(mySourceProvider.getName())) {
data.addText(data.getPresentableText(), SimpleTextAttributes.REGULAR_ATTRIBUTES);
data.addText(" (" + mySourceProvider.getName() + ")", SimpleTextAttributes.GRAY_ATTRIBUTES);
}
}
@Override
public Comparable getSortKey() {
String sourceProviderName = mySourceProvider == null ? "" : mySourceProvider.getName();
return getQualifiedNameSortKey() + "-" + (SdkConstants.FD_MAIN.equals(sourceProviderName) ? "" : sourceProviderName);
}
@Nullable
@Override
public Comparable getTypeSortKey() {
return getSortKey();
}
@Nullable
@Override
public String toTestString(@Nullable Queryable.PrintInfo printInfo) {
return toTestString(getValue().getName(), mySourceProvider);
}
public static String toTestString(String element, IdeaSourceProvider provider) {
StringBuilder sb = new StringBuilder(element);
if (provider != null) {
sb.append(" (");
sb.append(provider.getName());
sb.append(")");
}
return sb.toString();
}
}