Project

General

Profile

Download (1.3 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.preference;
12

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

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

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

    
40
		//
41
		return container;
42
	}
43

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