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

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

Introduction

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

Usage

From source file com.hybridbpm.ui.MainMenu.java

/**
 * A responsive menu component providing user information and the controls for primary navigation between the views.
 */
@SuppressWarnings({ "serial", "unchecked" })
@DesignRoot
public final class MainMenu extends CssLayout implements Button.ClickListener, MenuBar.Command {

From source file com.klwork.explorer.ui.task.DueDateComponent.java

/**
 * @author Joram Barrez
 */
public class DueDateComponent extends CssLayout {

    private static final long serialVersionUID = 1L;

From source file com.klwork.explorer.ui.task.PriorityComponent.java

/**
 * @author Joram Barrez
 */
public class PriorityComponent extends CssLayout {

    private static final long serialVersionUID = 1L;

From source file com.mcparland.john.InlineCssLayout.java

/**
 * Inline CSS Layout.
 * 
 * @author John McParland
 * 
 */

From source file com.mcparland.john.MobileLayout.java

/**
 * Example of using CSS layout on a mobile device.
 * 
 * @author John McParland
 * 
 */

From source file com.mcparland.john.TagCloud.java

/**
 * A tag cloud.
 * 
 * @author John McParland.
 * 
 */

From source file com.mcparland.john.vaadin_mvn_arch.samples.authentication.LoginScreen.java

/**
 * UI content when the user is not logged in yet.
 */
public class LoginScreen extends CssLayout {

    /**

From source file com.mcparland.john.vaadin_mvn_arch.samples.crud.ProductForm.java

/**
 * A form for editing a single product.
 *
 * Using responsive layouts, the form can be displayed either sliding out on the
 * side of the view or filling the whole screen - see the theme for the related
 * CSS rules.

From source file com.mcparland.john.vaadin_mvn_arch.samples.crud.SampleCrudView.java

/**
 * A view for performing create-read-update-delete operations on products.
 *
 * See also {@link SampleCrudLogic} for fetching the data, the actual CRUD
 * operations and controlling the view based on events from outside.
 */

From source file com.mcparland.john.vaadin_mvn_arch.samples.Menu.java

/**
 * Responsive navigation menu presenting a list of available views to the user.
 */
public class Menu extends CssLayout {

    /**