~verterok/bzr-eclipse/pluginpath-fix

« back to all changes in this revision

Viewing changes to org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/IgnoredFilesLabelProvider.java

  • Committer: Guillermo Gonzalez
  • Date: 2009-07-09 20:40:43 UTC
  • mfrom: (212.1.4 add-ignore)
  • Revision ID: guillo.gonzo@gmail.com-20090709204043-9l55py1bij7799s0
mergeĀ lp:~verterok/bzr-eclipse/add-ignore

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright (C) 2009 Canonical Ltd
 
3
 * 
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 */
 
18
package org.vcs.bazaar.eclipse.ui.dialogs;
 
19
 
 
20
import java.util.Map.Entry;
 
21
 
 
22
import org.eclipse.core.resources.IResource;
 
23
import org.eclipse.jface.viewers.ITableLabelProvider;
 
24
import org.eclipse.jface.viewers.LabelProvider;
 
25
import org.eclipse.swt.graphics.Image;
 
26
 
 
27
/**
 
28
 * 
 
29
 * @authors Javier Der Derian<br>
 
30
 *          Guillermo Gonzalez <guillo.gonzo@gmail.com>
 
31
 * @BasedOn CommitResourceLabelProvider from BzrEclipse
 
32
 */
 
33
public final class IgnoredFilesLabelProvider extends LabelProvider implements ITableLabelProvider {
 
34
 
 
35
    public Image getColumnImage(Object element, int columnIndex) {
 
36
        // No images.
 
37
        return null;
 
38
    }
 
39
 
 
40
    public String getColumnText(Object element, int columnIndex) {
 
41
        Entry<IResource, String> entry = (Entry<IResource, String>) element;
 
42
        switch (columnIndex) {
 
43
        case 0:
 
44
            return entry.getKey().getProjectRelativePath().toString();
 
45
        case 1:
 
46
            return entry.getValue();
 
47
        default:
 
48
            return "N/A";
 
49
        }
 
50
 
 
51
    }
 
52
}