/* @VaadinApache2LicenseForJavaFiles@ */ package com.vaadin.ui; import java.lang.reflect.Method; import java.util.logging.Logger; import com.vaadin.data.Property; import com.vaadin.data.util.converter.Converter; import com.vaadin.data.util.converter.ConverterUtil; import com.vaadin.shared.ui.label.ContentMode; import com.vaadin.shared.ui.label.LabelState; /** * Label component for showing non-editable short texts. * * The label content can be set to the modes specified by {@link ContentMode} * *

* The contents of the label may contain simple formatting: *

* The b,i,u and li tags can contain all the tags in * the list recursively. *

* * @author Vaadin Ltd. * @version * @VERSION@ * @since 3.0 */ @SuppressWarnings("serial") public class Label extends AbstractComponent implements Property, Property.Viewer, Property.ValueChangeListener, Property.ValueChangeNotifier, Comparable