List of usage examples for com.vaadin.ui CustomField subclass-usage
From source file org.vaadin.addons.javaee.fields.OneToOneRelationField.java
public class OneToOneRelationField<ENTITY extends PersistentEntity> extends CustomField<ENTITY> { private static final long serialVersionUID = 1L; private String captionProperty;
From source file org.vaadin.easyuploads.UploadField.java
/** * * @author mstahv */ public class UploadField extends CustomField<byte[]> implements Upload.Receiver {
From source file org.vaadin.peholmst.samples.dddwebinar.ui.admin.LicenseTypeMapField.java
/** * Please note! This custom field is not of production quality. */ public class LicenseTypeMapField extends CustomField<Map> { private Grid selectable;
From source file org.vaadin.viritin.fields.CommaSeparatedCollectionField.java
/**
* A simple TextField based component to edit collections of objects, which can
* be converted to String presentation and back.
* <p>
* Both split and joinSeparator can be specified and one can provide custom
* strategies to convert from String presentation to element types.
From source file org.vaadin.viritin.fields.CommaSeparatedStringField.java
/** * * @author mstahv */ public class CommaSeparatedStringField<CT extends Collection<String>> extends CustomField<CT> {
From source file org.yozons.vaadin.ckeditor.CKEditorField.java
/** * This is the CKEditor JavaScriptComponent packaged into a Field. * @author Yozons, Inc. * */ public class CKEditorField extends CustomField<String> {
From source file pl.alburnus.testcaseapp.DepartmentSelector.java
/** * A custom field that allows selection of a department. */ public class DepartmentSelector extends CustomField<Department> { private ComboBox geographicalDepartment = new ComboBox(); private ComboBox department = new ComboBox();
From source file pl.exsio.plupload.field.PluploadField.java
/** * * @author exsio * @param <T> */ public class PluploadField<T extends Object> extends CustomField<T> {
From source file pt.ist.vaadinframework.ui.fields.MultiLanguageStringField.java
/** * @author Pedro Santos (pedro.miguel.santos@ist.utl.pt) * */ @SuppressWarnings("serial") public class MultiLanguageStringField extends CustomField {