Project

General

Profile

Download (3.44 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.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.NomenclaturalStatusType;
20
import eu.etaxonomy.cdm.model.name.TaxonName;
21
import eu.etaxonomy.cdm.model.taxon.Synonym;
22
import eu.etaxonomy.taxeditor.editor.EditorUtil;
23
import eu.etaxonomy.taxeditor.editor.l10n.Messages;
24
import eu.etaxonomy.taxeditor.model.MessagingUtils;
25
import eu.etaxonomy.taxeditor.preference.Resources;
26

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

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

    
39
	/**
40
	 * <p>Constructor for SynonymContainer.</p>
41
	 *
42
	 * @param editor a {@link eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor} object.
43
	 * @param group a {@link eu.etaxonomy.taxeditor.editor.name.container.AbstractGroup} object.
44
	 * @param synonym a {@link eu.etaxonomy.cdm.model.taxon.Synonym} object.
45
	 */
46
	public SynonymContainer(AbstractHomotypicalGroupContainer group, Synonym synonym) {
47
		super(synonym);
48
	}
49
	
50
	public SynonymContainer(AbstractHomotypicalGroupContainer group, Synonym synonym, int indent, Image icon){
51
		super(synonym);
52
		this.indent = indent;
53
		this.icon = icon;
54
	}
55
	
56
	/** {@inheritDoc} */
57
	@Override
58
	protected void initializeComposite() {
59
		setIsDraggable(true);
60
		setFont(getViewerFont());
61
		
62
		if(getName() == null){
63
			MessagingUtils.warn(getClass(), Messages.SynonymContainer_SYNONYM_NULL_NAME);
64
		}
65
		
66
		initTextViewer();
67
	}
68
	
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
	protected Font getViewerFont() {
125
		return EditorUtil.getFont(Resources.SYNONYM_FONT);
126
	}
127

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

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