Project

General

Profile

« Previous | Next » 

Revision aef87bc3

Added by Katja Luther about 5 years ago

ref #3836: minor

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/description/detail/CategoricalDataDetailElement.java
46 46
		section_stateData.setEntity(entity);
47 47
		section_stateData.setLayoutData(LayoutConstants.FILL_HORIZONTALLY(2, 1));
48 48
		createTimePeriod(formElement, entity, style);
49
		if (entity.getFeature().getRecommendedModifierEnumeration() != null){
49
		if (entity.getFeature().getRecommendedModifierEnumeration() != null && entity.getFeature().getRecommendedModifierEnumeration().isEmpty()){
50 50
		    createModifier(formElement, entity, style);
51 51
		}
52 52
	}
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/description/detail/CommonNameDetailElement.java
68 68
				entity.getArea(), EntitySelectionElement.NOTHING, style);
69 69

  
70 70
		createTimePeriod(formElement, entity, style);
71
		if (entity.getFeature().getRecommendedModifierEnumeration() != null){
71
		if (entity.getFeature().getRecommendedModifierEnumeration() != null && entity.getFeature().getRecommendedModifierEnumeration().isEmpty()){
72 72
            createModifier(formElement, entity, style);
73 73
        }
74 74

  
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/description/detail/DistributionDetailElement.java
58 58

  
59 59
        combo_presenceAbsence = formFactory.createTermComboElement(PresenceAbsenceTerm.class, this, "Distribution Status", entity.getStatus(), style);
60 60
        createTimePeriod(formElement, entity, style);
61
        if (entity.getFeature().getRecommendedModifierEnumeration() != null){
61
        if (entity.getFeature().getRecommendedModifierEnumeration() != null && entity.getFeature().getRecommendedModifierEnumeration().isEmpty()){
62 62
            createModifier(formElement, entity, style);
63 63
        }
64 64
	}
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/description/detail/IndividualsAssociationDetailElement.java
61 61
		}
62 62

  
63 63
		createTimePeriod(formElement, entity, style);
64
		if (entity.getFeature().getRecommendedModifierEnumeration() != null){
64
		if (entity.getFeature().getRecommendedModifierEnumeration() != null && entity.getFeature().getRecommendedModifierEnumeration().isEmpty()){
65 65
            createModifier(formElement, entity, style);
66 66
        }
67 67
	}
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/description/detail/QuantitativeDataDetailElement.java
51 51
		section_statisticalMeasurementValues = formFactory.createStatisticalMeasurementValueSection(getConversationHolder(), formElement, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
52 52
		section_statisticalMeasurementValues.setEntity(entity);
53 53
		section_statisticalMeasurementValues.setLayoutData(LayoutConstants.FILL_HORIZONTALLY(2, 1));
54
		if (entity.getFeature().getRecommendedModifierEnumeration() != null){
54
		if (entity.getFeature().getRecommendedModifierEnumeration() != null && entity.getFeature().getRecommendedModifierEnumeration().isEmpty()){
55 55
            createModifier(formElement, entity, style);
56 56
        }
57 57
	}
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/description/detail/TaxonInteractionDetailElement.java
79 79
                    CdmStore.getDefaultLanguage()).getText());
80 80
        }
81 81
        createTimePeriod(formElement, entity, style);
82
        if (entity.getFeature().getRecommendedModifierEnumeration() != null){
82
        if (entity.getFeature().getRecommendedModifierEnumeration() != null && entity.getFeature().getRecommendedModifierEnumeration().isEmpty()){
83 83
            createModifier(formElement, entity, style);
84 84
        }
85 85
	}

Also available in: Unified diff