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 fi.racetrace.adminpanel.ui.VolLatLngPicker.java

public class VolLatLngPicker extends CustomComponent {
    private final OpenLayersMap map = new OpenLayersMap();
    private Field<String> latField;
    private Field<String> lonField;
    private VectorLayer markerLayer;
    private double centerLon;

From source file fi.vtt.RVaadin.RUpload.java

/**
 * RUpload constructs an upload window as Vaadin CustomComponent for the R
 * session given as an argument. Uploading files through the browser window is
 * intentionally difficult, which does not give much room for creativity about
 * designing the element. Ultimately, this is a security issue to prevent people
 * from unintentionally uploading their confidential information into Internet.

From source file gq.vaccum121.ui.LoginScreen.java

/**
 * Full-screen UI component that allows the user to login.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@PrototypeScope

From source file info.magnolia.ui.admincentral.shellapp.favorites.FavoritesEntry.java

/**
 * FavoritesEntry.
 */
public final class FavoritesEntry extends CustomComponent
        implements EditableFavoriteItem, EditingEvent.EditingNotifier {

From source file info.magnolia.ui.admincentral.shellapp.favorites.FavoritesForm.java

/**
 * FavoritesForm.
 */
public final class FavoritesForm extends CustomComponent {

    private static final String EDIT_ACTION_STYLENAME = "favItemEdit";

From source file info.magnolia.ui.admincentral.shellapp.favorites.FavoritesViewImpl.java

/**
 * Default view implementation for favorites.
 */
public final class FavoritesViewImpl extends CustomComponent implements FavoritesView {

    private VerticalLayout layout = new VerticalLayout();

From source file info.magnolia.ui.admincentral.shellapp.pulse.item.list.PulseListFooter.java

/**
 * Footer view implementation displayed underneath the items list.
 */
public final class PulseListFooter extends CustomComponent {

    private HorizontalLayout footer = new HorizontalLayout();

From source file info.magnolia.ui.form.field.component.AbstractContentPreviewComponent.java

/**
 * Base implementation of {@link ContentPreviewComponent}.<br>
 *
 * @param <T>.
 */
public abstract class AbstractContentPreviewComponent<T> extends CustomComponent

From source file info.magnolia.ui.form.field.upload.basic.BasicUploadProgressIndicator.java

/**
 * Custom Component used to create a custom display for the progress indicator.
 * <p>
 * This view normally contains a progress bar and a label indicating the uploaded percentage, filename...<br>
 * Refreshing the view is done by calling {@link #refreshLayout(long, long, String)}
 * <p>

From source file info.magnolia.ui.mediaeditor.MediaEditorViewImpl.java

/**
 * Skeleton implementation of the media editor UI. Contains an actionbar and a dialog laid out horizontally.
 */
public class MediaEditorViewImpl extends CustomComponent implements MediaEditorView {

    private DialogView dialog;