Project

General

Profile

Download (1.09 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.taxeditor.ui.element.AbstractFormSection;
16
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
17

    
18
/**
19
 * @author pplitzner
20
 * @date Apr 27, 2015
21
 *
22
 */
23
public class OnlyApplicableIfCollectionElement extends AbstractApplicableElement {
24

    
25
    public OnlyApplicableIfCollectionElement(CdmFormFactory formFactory, AbstractFormSection section,
26
            FeatureState entity, SelectionListener removeListener, Color backgroundColor, int style) {
27
        super(formFactory, section, entity, removeListener, backgroundColor, style);
28
    }
29

    
30
    @Override
31
    protected String getComboLabel() {
32
        return "Only applicable if";
33
    }
34

    
35

    
36
}
(16-16/17)