Project

General

Profile

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

    
11
import org.eclipse.swt.events.SelectionListener;
12
import org.eclipse.swt.graphics.Color;
13

    
14
import eu.etaxonomy.cdm.model.description.FeatureState;
15
import eu.etaxonomy.cdm.persistence.dto.FeatureStateDto;
16
import eu.etaxonomy.taxeditor.ui.element.AbstractFormSection;
17
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
18

    
19
/**
20
 * @author pplitzner
21
 * @date Apr 27, 2015
22
 *
23
 */
24
public class InapplicableIfCollectionElementForDto extends AbstractApplicableElementForDto {
25

    
26
    public InapplicableIfCollectionElementForDto(CdmFormFactory formFactory, AbstractFormSection section, FeatureStateDto entity,
27
            SelectionListener removeListener, Color backgroundColor, int style) {
28
        super(formFactory, section, entity, removeListener, backgroundColor, style);
29
        
30
    }
31

    
32
    @Override
33
    protected String getComboLabel() {
34
        // TODO Auto-generated method stub
35
        return "Inapplicable if";
36
    }
37
    
38
   
39

    
40
}
(16-16/28)