Project

General

Profile

Download (1.5 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2014 EDIT
4
* European Distributed Institute of Taxonomy
5
* http://www.e-taxonomy.eu
6
*
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10
package eu.etaxonomy.taxeditor.newWizard;
11

    
12
import eu.etaxonomy.cdm.api.service.molecular.IAmplificationService;
13
import eu.etaxonomy.cdm.model.molecular.Amplification;
14
import eu.etaxonomy.taxeditor.store.CdmStore;
15

    
16
/**
17
 * @author pplitzner
18
 * @date 11.03.2014
19
 *
20
 */
21
public class NewAmplificationWizard  extends AbstractNewEntityWizard<Amplification> {
22

    
23
    private AmplificationGeneralWizardPage amplificationGeneralPage;
24

    
25
    /** {@inheritDoc} */
26
    @Override
27
    public void addPages() {
28
        amplificationGeneralPage = new AmplificationGeneralWizardPage(formFactory, getConversationHolder(), getEntity());
29
        addPage(amplificationGeneralPage);
30
    }
31

    
32
    /** {@inheritDoc} */
33
    @Override
34
    protected Amplification createNewEntity() {
35
        return Amplification.NewInstance();
36
    }
37

    
38
    /** {@inheritDoc} */
39
    @Override
40
    protected void saveEntity() {
41
        CdmStore.getService(IAmplificationService.class).merge(getEntity(), true);
42
        
43
    }
44

    
45
    /** {@inheritDoc} */
46
    @Override
47
    public void setEntity(Amplification entity) {
48
        super.setEntity(entity);
49
        amplificationGeneralPage.getDetailElement().setEntity(entity);
50
    }
51

    
52
    @Override
53
    protected String getEntityName() {
54
        return "Amplification";
55
    }
56
}
(5-5/23)