Project

General

Profile

Download (971 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.IStructuredContentProvider;
13
import org.eclipse.jface.viewers.Viewer;
14

    
15
/**
16
 * @author pplitzner
17
 * @date Sep 7, 2015
18
 *
19
 */
20
public class SpecimenViewContentProvider implements IStructuredContentProvider{
21

    
22
    @Override
23
    public void dispose() {
24
        // TODO Auto-generated method stub
25

    
26
    }
27

    
28
    @Override
29
    public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
30
        // TODO Auto-generated method stub
31

    
32
    }
33

    
34
    @Override
35
    public Object[] getElements(Object inputElement) {
36
//        CdmStore.getService(ITaxonService.class).get
37
        return new String[]{"bla","ble"};
38
    }
39

    
40
}
(2-2/3)