p2izing the editor
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor.prototype2 / src / eu / etaxonomy / taxeditor / prototype2 / view / EditNameProperties.java
1 package eu.etaxonomy.taxeditor.prototype2.view;
2
3 import org.eclipse.swt.SWT;
4 import org.eclipse.swt.widgets.Composite;
5 import org.eclipse.swt.widgets.Control;
6 import org.eclipse.ui.dialogs.PropertyPage;
7
8 public class EditNameProperties extends PropertyPage {
9
10 /**
11 * Create the property page
12 */
13 public EditNameProperties() {
14 super();
15 }
16
17 /**
18 * Create contents of the property page
19 * @param parent
20 */
21 @Override
22 public Control createContents(Composite parent) {
23 Composite container = new Composite(parent, SWT.NULL);
24 //
25 return container;
26 }
27
28 }