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 com.mcparland.john.vaadin_mvn_arch.samples.crud.CategoryField.java

/**
 * A custom Field implementation that allows selecting a set of categories using
 * checkboxes rather than multi-selection in a list/table or a TwinColSelect.
 */
public class CategoryField extends CustomField<Set<Category>> {

From source file com.mycollab.mobile.module.crm.ui.RelatedReadItemField.java

/**
 * @author MyCollab Ltd.
 * @since 4.1
 */
public class RelatedReadItemField extends CustomField {
    private static final long serialVersionUID = 1L;

From source file com.mycollab.mobile.module.crm.view.activity.RelatedItemSelectionField.java

/**
 * @author MyCollab Ltd.
 * @since 4.2
 */
public class RelatedItemSelectionField extends CustomField<Integer> implements FieldSelection {
    private static final long serialVersionUID = -3572873867793792681L;

From source file com.mycollab.mobile.ui.AbstractSelectionCustomField.java

/**
 * @author MyCollab Ltd.
 * @since 4.3.1
 */
public abstract class AbstractSelectionCustomField<T, B> extends CustomField<T> implements FieldSelection<B> {
    private static final long serialVersionUID = 1L;

From source file com.mycollab.module.crm.ui.components.RelatedEditItemField.java

/**
 * @author MyCollab Ltd.
 * @since 2.0
 */
public class RelatedEditItemField extends CustomField<String> implements FieldSelection {
    private static final long serialVersionUID = 1L;

From source file com.mycollab.module.crm.ui.components.RelatedReadItemField.java

/**
 * @author MyCollab Ltd.
 * @since 1.0
 */
public class RelatedReadItemField extends CustomField {
    private static final long serialVersionUID = 1L;

From source file com.mycollab.module.crm.view.account.AccountSelectionField.java

/**
 * @author MyCollab Ltd.
 * @since 1.0
 */
public class AccountSelectionField extends CustomField<Integer> implements FieldSelection<Account> {
    private static final long serialVersionUID = 1L;

From source file com.mycollab.module.crm.view.campaign.CampaignSelectionField.java

/**
 * @author MyCollab Ltd.
 * @since 1.0
 */
public class CampaignSelectionField extends CustomField<Integer> implements FieldSelection<CampaignWithBLOBs> {
    private CampaignWithBLOBs internalValue = new CampaignWithBLOBs();

From source file com.mycollab.module.crm.view.contact.ContactSelectionField.java

/**
 * @author MyCollab Ltd.
 * @since 1.0
 */
public class ContactSelectionField extends CustomField<Integer> implements FieldSelection<Contact> {
    private static final long serialVersionUID = 1L;

From source file com.mycollab.module.project.ui.components.ProjectSubscribersComp.java

/**
 * @author MyCollab Ltd.
 * @since 5.0.1
 */
public class ProjectSubscribersComp extends CustomField {
    private int projectId;