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

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

Introduction

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

Usage

From source file info.magnolia.ui.form.field.StaticField.java

/**
 * A base custom field displaying a simple text.
 */
public class StaticField extends CustomField<Object> {

    private Label label;

From source file info.magnolia.ui.form.field.ThumbnailField.java

/**
 * A base custom field comprising of a Thumbnail and related image information.
 * This Field is waiting for path Node value.
 */
public class ThumbnailField extends CustomField<String> {
    private static final Logger log = LoggerFactory.getLogger(ThumbnailField.class);

From source file info.magnolia.ui.form.field.upload.AbstractUploadField.java

/**
 * Main implementation of the UploadFile field. This implementation used some
 * features of {@link org.vaadin.easyuploads.UploadField} and associated
 * classes.
 * <p>
 * This class handles Upload events and expose functions that allows to customize the 3 main upload states (link to a view Component):

From source file info.magnolia.ui.mediaeditor.field.image.ImageMediaField.java

/**
 * Base class for image-editing fields.
 */
public abstract class ImageMediaField extends CustomField<byte[]> implements MediaField, Scalable {

    protected final static String DEFAULT_FORMAT = "png";

From source file info.magnolia.ui.vaadin.editor.JCropField.java

/**
 * Field that wraps A {@link CroppableImage}, manages the {@link SelectionArea} as a value.
 */
public class JCropField extends CustomField<SelectionArea> {

    private final JCrop jcrop;

From source file info.magnolia.ui.vaadin.switcher.Switcher.java

/**
 * This class is a {@link CustomField} which wraps a {@link ComboBox} and additionally provides 2 arrows to "navigate" -
 * actually to select the previous or the next item from the available set.
 * Additionally, the Switcher can display a description of the currently selected item.
 *
 * Its Layout looks like<br/>

From source file module.vaadin.ui.MultilanguageStringEditor.java

/**
 * 
 * @author Pedro Santos
 * 
 */
public class MultilanguageStringEditor extends CustomField {

From source file net.sourceforge.javydreamercsw.validation.manager.web.component.DataEntryComponent.java

/**
 *
 * @author Javier A. Ortiz Bultron javier.ortiz.78@gmail.com
 */
public final class DataEntryComponent extends CustomField<List<DataEntry>> {

From source file net.sourceforge.javydreamercsw.validation.manager.web.component.DataEntryPropertyComponent.java

/**
 *
 * @author Javier A. Ortiz Bultron javier.ortiz.78@gmail.com
 */
public final class DataEntryPropertyComponent extends CustomField<List<DataEntryProperty>> {

From source file net.sourceforge.javydreamercsw.validation.manager.web.component.DataEntryTypeComponent.java

/**
 *
 * @author Javier A. Ortiz Bultron javier.ortiz.78@gmail.com
 */
public class DataEntryTypeComponent extends CustomField<List<DataEntryType>> {