Project

General

Profile

Download (1.49 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
 * Copyright (C) 2007 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

    
11
package eu.etaxonomy.taxeditor.singlesource.io.wizard;
12

    
13
import javax.naming.OperationNotSupportedException;
14

    
15
import org.eclipse.swt.widgets.Composite;
16

    
17
import eu.etaxonomy.taxeditor.singlesource.io.wizard.ExportToFileDestinationWizardPageFacade;
18

    
19
/**
20
 * <p>
21
 * ExportToFileDestinationWizardPage class.
22
 * </p>
23
 * 
24
 * @author n.hoffmann
25
 * @created 15.06.2009
26
 * @version 1.0
27
 */
28
public class ExportToFileDestinationWizardPageFacadeImpl extends ExportToFileDestinationWizardPageFacade {
29

    
30
	private ExportToFileDestinationWizardPageFacadeImpl(String pageName) {
31
		super(pageName);
32
	}
33

    
34
	protected Object getInstanceInternal(String pageName, String type, String title, String description, String extension)
35
	{
36
		ExportToFileDestinationWizardPageFacadeImpl INST = new ExportToFileDestinationWizardPageFacadeImpl(pageName); 
37
		INST.type = type;
38
		INST.extension = extension;
39
		INST.setTitle(title);
40
		INST.setDescription(description);
41
		return INST;
42
	}
43

    
44
	/*
45
	 * (non-Javadoc)
46
	 * 
47
	 * @see
48
	 * org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets
49
	 * .Composite)
50
	 */
51
	/** {@inheritDoc} */
52
	public void createControlInternal(Composite parent) throws OperationNotSupportedException {
53
		throw new OperationNotSupportedException();
54
	}
55
}
(1-1/2)