ref #9114 adapt some classes with URI to wrapper in taxeditor (cont.)
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / feature / InapplicableIfCollectionElement.java
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 InapplicableIfCollectionElement extends AbstractApplicableElement {
24
25 public InapplicableIfCollectionElement(CdmFormFactory formFactory, AbstractFormSection section, FeatureState entity,
26 SelectionListener removeListener, Color backgroundColor, int style) {
27 super(formFactory, section, entity, removeListener, backgroundColor, style);
28 }
29
30 @Override
31 protected String getComboLabel() {
32 // TODO Auto-generated method stub
33 return "Inapplicable if";
34 }
35
36 }