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

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

Introduction

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

Usage

From source file uk.co.q3c.v7.base.view.components.LoginStatusPanel.java

/**
 * Represents the "logged in" status of the current {@link Subject}. Because it is UIScoped, only one can be used per
 * {@link ScopedUI}.
 * <p>
 * 
 * 

From source file uk.q3c.krail.core.i18n.CompositeComponent_with_Caption_and_I18N.java

/**
 * Test class with both Caption and I18N annotations
 */
@Caption(caption = LabelKey.Class, description = DescriptionKey.Locale_Flag_Size)
@I18N
public class CompositeComponent_with_Caption_and_I18N extends Panel {

From source file uk.q3c.krail.core.i18n.CompositeComponent_with_Caption_Only.java

/**
 * Test class with Caption and no I18N
 */
@Caption(caption = LabelKey.Class, description = DescriptionKey.Locale_Flag_Size)
public class CompositeComponent_with_Caption_Only extends Panel {

From source file uk.q3c.krail.core.i18n.CompositeComponent_with_I18N_only.java

/**
 * Test class with I18N annotation
 */
@I18N
public class CompositeComponent_with_I18N_only extends Panel {

From source file uk.q3c.krail.core.view.component.DefaultApplicationHeader.java

public class DefaultApplicationHeader extends Panel implements ApplicationHeader {
    private Label label;
    private HorizontalLayout layout;

    // private ComboBox comboBox;

From source file uk.q3c.krail.core.view.component.DefaultMessageBar.java

@UIScoped
@Listener
@SubscribeTo(UIBus.class)
public class DefaultMessageBar extends Panel implements MessageBar {
    private static Logger log = LoggerFactory.getLogger(DefaultMessageBar.class);
    private final Translate translate;

From source file uk.q3c.krail.core.view.component.DefaultUserNavigationPanel.java

public class DefaultUserNavigationPanel extends Panel implements UserNavigationPanel {

    private final UserNavigationTree tree;
    private Panel toolbar;

    @Inject

From source file uk.q3c.krail.core.view.component.DefaultUserStatusPanel.java

/**
 * Represents the "logged in" status of the current {@link Subject}.
 * <p>
 *
 * @author David Sowerby 16 Jan 2013
 */

From source file uk.q3c.krail.core.view.component.DefaultViewBody.java

public class DefaultViewBody extends Panel implements ViewBody {

    public DefaultViewBody() {
        super();
    }