a47df4add5fc78d597c3951946aac90864a2d675
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / name / SynonymRelationshipWizard.java
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.ui.section.name;
11 //
12 //import org.eclipse.jface.wizard.Wizard;
13 //
14 //import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
15 //import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
16 //import eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap;
17 //
18 ///**
19 // * @author pplitzner
20 // * @date 27.01.2014
21 // *
22 // */
23 //public class SynonymRelationshipWizard extends Wizard implements IConversationEnabled{
24 //
25 // private static SynonymRelationshipDetailSection callingSection;
26 //
27 // /**
28 // * <p>Constructor for NameRelationshipWizard.</p>
29 // *
30 // * @param callingSection a {@link eu.etaxonomy.taxeditor.ui.section.name.NameRelationshipDetailSection} object.
31 // */
32 // public SynonymRelationshipWizard(SynonymRelationshipDetailSection callingSection) {
33 // SynonymRelationshipWizard.callingSection = callingSection;
34 // }
35 //
36 // private SynonymRelationshipWizardPage page;
37 //
38 // /** {@inheritDoc} */
39 // @Override
40 // public void addPages() {
41 // page = new SynonymRelationshipWizardPage(callingSection);
42 //
43 // addPage(page);
44 // }
45 //
46 // /* (non-Javadoc)
47 // * @see org.eclipse.jface.wizard.Wizard#performFinish()
48 // */
49 // /** {@inheritDoc} */
50 // @Override
51 // public boolean performFinish() {
52 // return page.isPageComplete();
53 // }
54 //
55 //
56 //
57 // /**
58 // * <p>getNameRelationship</p>
59 // *
60 // * @return a {@link eu.etaxonomy.cdm.model.name.NameRelationship} object.
61 // */
62 // public SynonymRelationship getSynonymRelationship() {
63 // return page.getSynonymRelationship();
64 // }
65 //
66 // /**
67 // * <p>getConversationHolder</p>
68 // *
69 // * @return a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
70 // */
71 // @Override
72 // public ConversationHolder getConversationHolder() {
73 // return callingSection.getConversationHolder();
74 // }
75 //
76 // /** {@inheritDoc} */
77 // @Override
78 // public void update(CdmDataChangeMap changeEvents) {}
79 //}