Project

General

Profile

Download (855 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2015 EDIT
4
* European Distributed Institute of Taxonomy
5
* http://www.e-taxonomy.eu
6
*
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10
package eu.etaxonomy.taxeditor.view.specimenView;
11

    
12
import org.eclipse.jface.viewers.ITableLabelProvider;
13
import org.eclipse.jface.viewers.LabelProvider;
14
import org.eclipse.swt.graphics.Image;
15

    
16
/**
17
 * @author pplitzner
18
 * @date Sep 7, 2015
19
 *
20
 */
21
public class SpecimenViewLabelProvider extends LabelProvider implements ITableLabelProvider{
22

    
23
    @Override
24
    public Image getColumnImage(Object element, int columnIndex) {
25
        return null;
26
    }
27

    
28
    @Override
29
    public String getColumnText(Object element, int columnIndex) {
30
        return columnIndex==0?"<^^>":"<vv>";
31
    }
32

    
33

    
34
}
(3-3/3)