Example usage for com.vaadin.ui AbstractComponentContainer subclass-usage

List of usage examples for com.vaadin.ui AbstractComponentContainer subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.ui AbstractComponentContainer subclass-usage.

Usage

From source file info.magnolia.ui.vaadin.icon.CompositeIcon.java

/**
 * The CompositeIcon allows for layered icons, such as a warning sign, with optional outer shape
 * outline. It mostly serves as the base class for preset composite icons such as InfoIcon,
 * WarningIcon, etc.
 */
public class CompositeIcon extends AbstractComponentContainer {

From source file info.magnolia.ui.vaadin.magnoliashell.DeckLayout.java

/**
 * Component container showing only the most recently added component and keeping previously shown components in a stack
 * for easy switching to the previously shown.
 */
public class DeckLayout extends AbstractComponentContainer {

From source file info.magnolia.ui.vaadin.tabsheet.MagnoliaTabSheet.java

/**
 * Simple lightweight tabsheet component.
 */
public class MagnoliaTabSheet extends AbstractComponentContainer {

    private final List<MagnoliaTab> tabs = new LinkedList<MagnoliaTab>();

From source file org.vaadin.henrik.drawer.Drawer.java

/**
 * @author Henrik Paul / IT Mill Ltd
 */
@SuppressWarnings("serial")
@ClientWidget(VDrawer.class)
public class Drawer extends AbstractComponentContainer {

From source file org.vaadin.tori.view.thread.PostComponent.java

@SuppressWarnings("serial")
public class PostComponent extends AbstractComponentContainer implements PostEditorListener {

    private static final String DELETE_CAPTION = "Delete Post...";
    private static final String EDIT_CAPTION = "Edit Post";
    private static final String BAN_CAPTION = "Ban Author";

From source file VaadinIRC.GUI.componentContainers.ChannelGUIComponentContainer.java

/**
 * Contains all the components for channel GUI.
 * @author Aleksi Postari
 *
 */
public class ChannelGUIComponentContainer extends AbstractComponentContainer {

From source file VaadinIRC.GUI.componentContainers.SettingsComponentContainer.java

/**
 * Contains the components for the settings windows.
 * @author Aleksi Postari
 *
 */
public abstract class SettingsComponentContainer extends AbstractComponentContainer {