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

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

Introduction

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

Usage

From source file com.foc.vaadin.gui.components.upload.FVUpload_Document.java

@Deprecated
@SuppressWarnings("serial")
public class FVUpload_Document extends CustomComponent
        implements Upload.SucceededListener, Upload.FailedListener, Upload.Receiver {

    private VerticalLayout root = null;

From source file com.foc.vaadin.gui.components.upload.FVUpload_Image.java

@SuppressWarnings("serial")
public class FVUpload_Image extends CustomComponent
        implements Upload.StartedListener, Upload.SucceededListener, Upload.FailedListener, Upload.Receiver {

    private int maxSizeAllowed = ConfigInfo.getUploadMaxSize();

From source file com.foc.vaadin.gui.FocCustomComponent.java

@SuppressWarnings("serial")
public class FocCustomComponent extends CustomComponent {

    private FocWebVaadinWindow mainWindow = null;
    private AbsoluteLayout mainLayout = null;
    private int width = 200;

From source file com.foc.vaadin.gui.layouts.FVHTMLLayout.java

@SuppressWarnings("serial")
public class FVHTMLLayout extends CustomComponent implements FVLayout {

    private VerticalLayout rootVerticalLayout = null;
    private CustomLayout customLayout = null;
    private String name;

From source file com.github.peholmst.mvp4vaadin.AbstractViewComponent.java

/**
 * This is a sibling to {@link AbstractView} and is intended for view
 * implementations that are themselves Vaadin components. It has been designed
 * to be used together with concrete {@link Presenter} implementations. It
 * delegates all {@link View}-methods to a {@link ViewDelegate}.
 * 

From source file com.github.peholmst.springsecuritydemo.ui.AbstractView.java

/**
 * This class acts as a base class for views. In this context, a view is a
 * custom component that is associated with exactly one instance of
 * {@link SpringSecurityDemoApp}.
 * 
 * @author Petter Holmstrm

From source file com.github.wolfie.detachedtabs.DetachedTabs.java

/**
 * <p>
 * A sort of {@link TabSheet}, with the tabs detached from its sheet.
 * </p>
 * 
 * <p>

From source file com.gmail.volodymyrdotsenko.cms.fe.vaadin.views.AdminView.java

/**
 * View that is available to administrators only.
 *
 */
@Secured("ROLE_ADMIN")
@SpringView(name = "admin")

From source file com.gmail.volodymyrdotsenko.cms.fe.vaadin.views.UserView.java

/**
 * View that is available for all users.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@Secured({ "ROLE_USER", "ROLE_ADMIN" })

From source file com.google.code.vaadin.mvp.ViewComponent.java

/**
 * Base class for Views or their subcomponents.
 *
 * @author Alexey Krylov
 * @since 23.01.13
 */