Project

General

Profile

« Previous | Next » 

Revision adb769b4

Added by Andreas Müller over 3 years ago

cleanup

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/JaxbExportWizard.java
6 6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7 7
* See LICENSE.TXT at the top of this package for the full license terms.
8 8
*/
9

  
10 9
package eu.etaxonomy.taxeditor.io.wizard;
11 10

  
12 11
import java.io.File;
13
import java.net.URI;
14 12

  
15 13
import org.eclipse.core.runtime.jobs.Job;
16 14
import org.eclipse.jface.viewers.IStructuredSelection;
......
25 23
 *
26 24
 * @author n.hoffmann
27 25
 * @created 15.06.2009
28
 * @version 1.0
29 26
 */
30 27
public class JaxbExportWizard extends AbstractExportWizard<JaxbExportConfigurator> {
31 28

  
......
33 30

  
34 31
	private JaxbExportConfigurator configurator;
35 32

  
36
	/* (non-Javadoc)
37
	 * @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)
38
	 */
39
	/** {@inheritDoc} */
40 33
	@Override
41 34
    public void init(IWorkbench workbench, IStructuredSelection selection) {
42 35
		this.setWindowTitle("JAXB Export");
43 36
		this.configurator = CdmStore.getExportManager().JaxbConfigurator();
44 37
	}
45 38

  
46
	/* (non-Javadoc)
47
	 * @see org.eclipse.jface.wizard.Wizard#performFinish()
48
	 */
49
	/** {@inheritDoc} */
50 39
	@Override
51 40
	public boolean performFinish() {
52 41
		boolean performFinish = false;
......
67 56
		return performFinish;
68 57
	}
69 58

  
70
	/* (non-Javadoc)
71
	 * @see org.eclipse.jface.wizard.Wizard#addPages()
72
	 */
73
	/** {@inheritDoc} */
74 59
	@Override
75 60
	public void addPages() {
76 61
		super.addPages();
......
79 64
		addPage(page);
80 65
	}
81 66

  
82
	/* (non-Javadoc)
83
	 * @see eu.etaxonomy.taxeditor.io.AbstractExportWizard#getConfigurator()
84
	 */
85
	/** {@inheritDoc} */
86 67
	@Override
87 68
	public JaxbExportConfigurator getConfigurator() {
88 69
		return configurator;
89 70
	}
90

  
91

  
92
}
71
}

Also available in: Unified diff