Project

General

Profile

Download (3.4 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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

    
10
package eu.etaxonomy.taxeditor.editor.name.e4.container;
11

    
12
import java.util.Set;
13

    
14
import org.eclipse.swt.graphics.Font;
15
import org.eclipse.swt.graphics.Image;
16

    
17
import eu.etaxonomy.cdm.model.name.HomotypicalGroup;
18
import eu.etaxonomy.cdm.model.name.NomenclaturalStatus;
19
import eu.etaxonomy.cdm.model.name.TaxonName;
20
import eu.etaxonomy.cdm.model.taxon.Synonym;
21
import eu.etaxonomy.taxeditor.editor.EditorUtil;
22
import eu.etaxonomy.taxeditor.editor.l10n.Messages;
23
import eu.etaxonomy.taxeditor.model.MessagingUtils;
24
import eu.etaxonomy.taxeditor.preference.Resources;
25

    
26
/**
27
 * <p>SynonymContainer class.</p>
28
 *
29
 * @author p.ciardelli
30
 * @created 13.01.2009
31
 * @version 1.0
32
 */
33
public class SynonymContainerE4 extends AbstractGroupedContainerE4<Synonym> {
34

    
35
	private int indent = SYNONYM_INDENT;
36
	private Image icon = HETEROTYPIC_SYNONYM_ICON;
37

    
38
	/**
39
	 * <p>Constructor for SynonymContainer.</p>
40
	 *
41
	 * @param editor a {@link eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor} object.
42
	 * @param group a {@link eu.etaxonomy.taxeditor.editor.name.container.AbstractGroup} object.
43
	 * @param synonym a {@link eu.etaxonomy.cdm.model.taxon.Synonym} object.
44
	 */
45
	public SynonymContainerE4(AbstractHomotypicalGroupContainerE4 group, Synonym synonym) {
46
		super(group, synonym);
47
	}
48

    
49
	public SynonymContainerE4(AbstractHomotypicalGroupContainerE4 group, Synonym synonym, int indent, Image icon){
50
		super(group, synonym);
51
		this.indent = indent;
52
		this.icon = icon;
53
	}
54

    
55
	/** {@inheritDoc} */
56
	@Override
57
	protected void initializeComposite() {
58
		setIsDraggable(true);
59
		setFont(getViewerFont());
60

    
61
		if(getName() == null){
62
			MessagingUtils.warn(getClass(), Messages.SynonymContainer_SYNONYM_NULL_NAME);
63
		}
64

    
65
		initTextViewer();
66
	}
67

    
68
	@Override
69
    protected void updateIcon(){
70
		TaxonName name = getName();
71

    
72

    
73
		if(! name.getStatus().isEmpty()){
74

    
75
			Set<NomenclaturalStatus> allStatus = name.getStatus();
76

    
77
			for (NomenclaturalStatus status : allStatus){
78
				if(status.getType() != null && (status.getType().isInvalidType())){
79
					setIcon(INVALID_OR_NUDUM_NAME_ICON);
80
					return;
81
				}
82
			}
83
		}
84

    
85
		if (isHomotypic()) {
86
			if(name.isGroupsBasionym()){
87
				setIcon(HOMOTYPIC_SYNONYM_ORIGINAL_COMBINATION_ICON);
88
			}else{
89
				setIcon(HOMOTYPIC_SYNONYM_ICON);
90
			}
91

    
92
			return;
93
		} else{
94
			if(name.isGroupsBasionym()){
95
				setIcon(HETEROTYPIC_SYNONYM_ORIGINAL_COMBINATION_ICON);
96
				return;
97
			}
98
		}
99

    
100
		setIcon(icon);
101

    
102
	}
103

    
104
	private boolean isHomotypic() {
105
		HomotypicalGroup group = getSynonym().getHomotypicGroup();
106
		return group.equals(getEditor().getTaxon().getHomotypicGroup());
107
	}
108

    
109
	/**
110
	 * <p>getSynonym</p>
111
	 *
112
	 * @return a {@link eu.etaxonomy.cdm.model.taxon.Synonym} object.
113
	 */
114
	public Synonym getSynonym() {
115
		return getTaxonBase();
116
	}
117

    
118

    
119
	/**
120
	 * <p>getViewerFont</p>
121
	 *
122
	 * @return a {@link org.eclipse.swt.graphics.Font} object.
123
	 */
124
	@Override
125
    protected Font getViewerFont() {
126
		return EditorUtil.getFont(Resources.SYNONYM_FONT);
127
	}
128

    
129
	/** {@inheritDoc} */
130
	@Override
131
	protected void updateNonEditableInfo() {
132
		// not needed
133
	}
134

    
135
	/* (non-Javadoc)
136
	 * @see eu.etaxonomy.taxeditor.editor.name.AbstractGroupedContainer#updateIndent()
137
	 */
138
	@Override
139
	protected void updateIndent() {
140
		setIndent(this.indent );
141
	}
142
}
(11-11/11)