merge-update from trunk
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / element / LabelElement.java
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.ui.element;
12
13 import org.eclipse.swt.SWT;
14 import org.eclipse.swt.widgets.Label;
15
16 import eu.etaxonomy.cdm.common.CdmUtils;
17 import eu.etaxonomy.taxeditor.ui.campanula.compatibility.ICdmFormElement;
18
19 /**
20 * <p>LabelElement class.</p>
21 *
22 * @author n.hoffmann
23 * @created Jun 1, 2010
24 * @version 1.0
25 */
26 public class LabelElement extends AbstractCdmFormElement {
27
28 private Label label;
29
30 /**
31 * <p>Constructor for LabelElement.</p>
32 *
33 * @param formFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
34 * @param formElement a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement} object.
35 * @param text a {@link java.lang.String} object.
36 */
37 public LabelElement(CdmFormFactory formFactory, ICdmFormElement formElement, String text) {
38 super(formFactory, formElement);
39
40 label = formFactory.createLabel(getLayoutComposite(), text, SWT.WRAP);
41 label.setLayoutData(LayoutConstants.FILL_HORIZONTALLY(2, 1));
42 addControl(label);
43 }
44
45 /**
46 * <p>setText</p>
47 *
48 * @param text a {@link java.lang.String} object.
49 */
50 public void setText(String text) {
51 label.setText(CdmUtils.Nz(text));
52 }
53 }