Revision d2cd9972
Added by Patrick Plitzner about 6 years ago
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/newWizard/NewTaxonWizard.java | ||
---|---|---|
25 | 25 |
*/ |
26 | 26 |
public class NewTaxonWizard extends AbstractNewEntityWizard<Taxon> { |
27 | 27 |
|
28 |
private TaxonWizardPage taxonWizardPage; |
|
29 |
|
|
30 | 28 |
/** {@inheritDoc} */ |
31 | 29 |
@Override |
32 | 30 |
public void addPages() { |
31 |
addPage(new TaxonWizardPage(formFactory, getConversationHolder(), getEntity())); |
|
33 | 32 |
addPage(new NonViralNameWizardPage(formFactory, getConversationHolder(), (NonViralName) getEntity().getName())); |
34 |
taxonWizardPage = new TaxonWizardPage(formFactory, getConversationHolder(), getEntity()); |
|
35 |
addPage(taxonWizardPage); |
|
36 | 33 |
} |
37 | 34 |
|
38 | 35 |
/** {@inheritDoc} */ |
Also available in: Unified diff
Fix order of wizard pages in new taxon wizard #2402