8837628b1c9d06205a91e57456fb933f7f1581fb
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / element / TextWithLabelElement2.java
1 // $Id$
2 /**
3 * Copyright (C) 2013 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 package eu.etaxonomy.taxeditor.ui.element;
11
12 import org.eclipse.swt.widgets.Composite;
13
14 /**
15 * @author pplitzner
16 * @date 11.06.2013
17 *
18 */
19 public class TextWithLabelElement2 extends Composite {
20
21 /**
22 * Create the composite.
23 * @param parent
24 * @param style
25 */
26 public TextWithLabelElement2(Composite parent, int style) {
27 super(parent, style);
28
29 }
30
31 @Override
32 protected void checkSubclass() {
33 // Disable the check that prevents subclassing of SWT components
34 }
35 }