Example usage for com.vaadin.ui Component.HasCaption interface-usage

List of usage examples for com.vaadin.ui Component.HasCaption interface-usage

Introduction

In this page you can find the example usage for com.vaadin.ui Component.HasCaption interface-usage.

Usage

From source file com.haulmont.cuba.web.gui.components.WebAbstractComponent.java

public abstract class WebAbstractComponent<T extends com.vaadin.ui.AbstractComponent> extends EventRouter
        implements Component, Component.Wrapper, Component.HasXmlDescriptor, Component.BelongToFrame,
        Component.HasIcon, Component.HasCaption {

    public static final List<Sizeable.Unit> UNIT_SYMBOLS = Collections.unmodifiableList(Arrays.asList(
            Sizeable.Unit.PIXELS, Sizeable.Unit.POINTS, Sizeable.Unit.PICAS, Sizeable.Unit.EM, Sizeable.Unit.EX,

From source file com.haulmont.cuba.web.gui.components.WebAbstractOrderedLayout.java

public class WebAbstractOrderedLayout<T extends com.vaadin.ui.CssLayout> extends WebAbstractComponent<T>
        implements Component.OrderedContainer, Component.BelongToFrame, Component.HasCaption, Component.HasIcon,
        Component.LayoutClickNotifier, Component.ShortcutNotifier {

    protected List<Component> ownComponents = new ArrayList<>();
    protected LayoutEvents.LayoutClickListener layoutClickListener;