implementation and generalization of a form framework to be used in the tabbed proper...
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / forms / Container.java
1 /**
2 *
3 */
4 package eu.etaxonomy.taxeditor.forms;
5
6 import org.eclipse.swt.widgets.Composite;
7
8 /**
9 * @author nho
10 *
11 */
12 public class Container extends AbstractFormComposite {
13
14 /**
15 * @param parent
16 * @param style
17 */
18 public Container(Composite parent, int style) {
19 super(parent, style);
20 }
21
22 }