Merged refactoring from development branch.
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / identificationkey / AbstractIdentificaitonKeyWizard.java
1 /**
2 *
3 */
4 package eu.etaxonomy.taxeditor.identificationkey;
5
6 import org.eclipse.jface.wizard.Wizard;
7
8 /**
9 * @author n.hoffmann
10 *
11 */
12 public class AbstractIdentificaitonKeyWizard extends Wizard {
13
14 /* (non-Javadoc)
15 * @see org.eclipse.jface.wizard.Wizard#performFinish()
16 */
17 @Override
18 public boolean performFinish() {
19 return false;
20 }
21
22 }