Project

General

Profile

Download (2.91 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.operation;
11

    
12
import org.eclipse.core.commands.ExecutionException;
13
import org.eclipse.core.commands.operations.IUndoContext;
14
import org.eclipse.core.runtime.IAdaptable;
15
import org.eclipse.core.runtime.IProgressMonitor;
16
import org.eclipse.core.runtime.IStatus;
17

    
18
import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
19
import eu.etaxonomy.cdm.model.name.HomotypicalGroup;
20
import eu.etaxonomy.cdm.model.name.TaxonNameBase;
21
import eu.etaxonomy.cdm.model.taxon.Synonym;
22
import eu.etaxonomy.cdm.model.taxon.Taxon;
23
import eu.etaxonomy.taxeditor.operation.AbstractPostTaxonOperation;
24
import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
25

    
26
/**
27
 * <ol>
28
 * 	<li>Create synonym name using newSynonymText</li>
29
 * 	<li>Add name to new homotypic group</li>
30
 * 	<li>Create a new synonym for the taxon</li>
31
 * </ol>
32
 *
33
 * @author p.ciardelli
34
 * @author n.hoffmann
35
 * @created 16.01.2009
36
 */
37
public class CreateSynonymInNewGroupOperation extends AbstractPostTaxonOperation {
38

    
39
	private final TaxonNameBase newSynonymName;
40
	private Synonym newSynonym;
41

    
42
	/**
43
	 * <p>Constructor for CreateSynonymInNewGroupOperation.</p>
44
	 *
45
	 * @param label a {@link java.lang.String} object.
46
	 * @param undoContext a {@link org.eclipse.core.commands.operations.IUndoContext} object.
47
	 * @param taxon a {@link eu.etaxonomy.cdm.model.taxon.Taxon} object.
48
	 * @param newSynonymName a {@link eu.etaxonomy.cdm.model.name.TaxonNameBase} object.
49
	 * @param postOperationEnabled a {@link eu.etaxonomy.taxeditor.operation.IPostOperationEnabled} object.
50
	 */
51
	public CreateSynonymInNewGroupOperation(String label,
52
			IUndoContext undoContext, Taxon taxon, TaxonNameBase newSynonymName, IPostOperationEnabled postOperationEnabled) {
53
		super(label, undoContext, taxon, postOperationEnabled);
54

    
55
		this.newSynonymName = newSynonymName;
56
	}
57

    
58
	/** {@inheritDoc} */
59
	@Override
60
	public IStatus execute(IProgressMonitor monitor, IAdaptable info)
61
			throws ExecutionException {
62

    
63
		// Add name to new homotypic group
64
		HomotypicalGroup.NewInstance().addTypifiedName(newSynonymName);
65
		monitor.worked(20);
66
		HibernateProxyHelper.deproxy(element);
67
		// Create a new synonym for the taxon
68
		newSynonym = element.addHeterotypicSynonymName(newSynonymName);
69
		monitor.worked(40);
70
		
71
		return postExecute(newSynonym);
72
	}
73

    
74
	/** {@inheritDoc} */
75
	@Override
76
	public IStatus redo(IProgressMonitor monitor, IAdaptable info)
77
			throws ExecutionException {
78
		return execute(monitor, info);
79
	}
80

    
81
	/** {@inheritDoc} */
82
	@Override
83
	public IStatus undo(IProgressMonitor monitor, IAdaptable info)
84
			throws ExecutionException {
85

    
86
		// Remove the synonym
87
		element.removeSynonym(newSynonym);
88
		newSynonym = null;
89

    
90
		return postExecute(null);
91
	}
92
}
(11-11/19)