Project

General

Profile

Download (1.51 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.IPrimerService;
13
import eu.etaxonomy.cdm.model.molecular.Primer;
14
import eu.etaxonomy.taxeditor.store.CdmStore;
15

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

    
23
    private PrimerWizardPage primerPage;
24

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

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

    
38
    /** {@inheritDoc} */
39
    @Override
40
    protected void saveEntity() {
41
        if(CdmStore.getCurrentSessionManager().isRemoting()) {
42
            CdmStore.getService(IPrimerService.class).merge(getEntity(),true);
43
        } else {
44
            CdmStore.getService(IPrimerService.class).save(getEntity());
45
        }
46
    }
47

    
48
    /** {@inheritDoc} */
49
    @Override
50
    public void setEntity(Primer entity) {
51
        super.setEntity(entity);
52
        primerPage.getDetailElement().setEntity(entity);
53
    }
54

    
55
    @Override
56
    protected String getEntityName() {
57
        return "Primer";
58
    }
59
}
(16-16/22)