Project

General

Profile

Download (1.49 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).saveOrUpdate(getEntity());
42
    }
43

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

    
51
    @Override
52
    protected String getEntityName() {
53
        return "Amplification";
54
    }
55
}
(4-4/21)