add file color for navigation list items which are not PsiElements but could fetch...
[fedora-idea.git] / platform / lang-impl / src / com / intellij / ide / util / DirectoryChooserView.java
blob229bf81554665aa503b444dd509bb9f1c408597b
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package com.intellij.ide.util;
19 import org.jetbrains.annotations.Nullable;
21 import javax.swing.*;
23 /**
24 * @author dsl
26 public interface DirectoryChooserView {
27 JComponent getComponent();
29 void onSelectionChange(Runnable runnable);
31 DirectoryChooser.ItemWrapper getItemByIndex(int i);
33 void clearSelection();
35 void selectItemByIndex(int selectionIndex);
37 void addItem(DirectoryChooser.ItemWrapper itemWrapper);
39 void listFilled();
41 void clearItems();
43 int getItemsSize();
45 @Nullable
46 DirectoryChooser.ItemWrapper getSelectedItem();