Project

General

Profile

Download (1.29 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
* 
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.taxeditor.preference;
11

    
12
import org.eclipse.jface.preference.PreferencePage;
13
import org.eclipse.swt.SWT;
14
import org.eclipse.swt.layout.GridLayout;
15
import org.eclipse.swt.widgets.Composite;
16
import org.eclipse.swt.widgets.Control;
17
import org.eclipse.ui.IWorkbench;
18
import org.eclipse.ui.IWorkbenchPreferencePage;
19

    
20
/**
21
 * <p>MatchingPreferences class.</p>
22
 *
23
 * @author n.hoffmann
24
 * @created Jan 22, 2010
25
 * @version 1.0
26
 */
27
public class MatchingPreferences extends PreferencePage implements
28
	IWorkbenchPreferencePage  {
29

    
30
	/* (non-Javadoc)
31
	 * @see org.eclipse.jface.preference.PreferencePage#createContents(org.eclipse.swt.widgets.Composite)
32
	 */
33
	/** {@inheritDoc} */
34
	@Override
35
	protected Control createContents(Composite parent) {
36
		Composite container = new Composite(parent, SWT.NULL);
37
		container.setLayout(new GridLayout());
38

    
39
		//
40
		return container;
41
	}
42

    
43
	/* (non-Javadoc)
44
	 * @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
45
	 */
46
	/** {@inheritDoc} */
47
	public void init(IWorkbench workbench) {
48
		
49
	}
50
	
51
	
52
}
(13-13/25)