List of usage examples for com.vaadin.ui CustomField subclass-usage
From source file org.eclipse.skalli.view.component.RadioSelect.java
public class RadioSelect extends CustomField implements Button.ClickListener { private static final long serialVersionUID = 9062812566241582377L; private static final ThemeResource SELECTED = new ThemeResource("icons/button/radio_selected.png"); //$NON-NLS-1$ private static final ThemeResource UNSELECTED = new ThemeResource("icons/button/radio_unselected.png"); //$NON-NLS-1$
From source file org.eclipse.skalli.view.component.UsersPicker.java
public class UsersPicker extends CustomField implements IPeopleSelectHandler { private static final long serialVersionUID = -8373359795470666228L; private static final String STYLE_TABLE = "usrpk-tbl"; private static final String STYLE_BUTTON = "multitext-btn"; // use the same style as used in multitext component
From source file org.jpos.qi.ReadOnlyField.java
public class ReadOnlyField extends CustomField<Object> { private Label label; public ReadOnlyField() { super(); label = new Label();
From source file org.lunifera.example.vaadin.osgi.jpacontainer.DepartmentSelector.java
/** * A custom field that allows selection of a department. */ @SuppressWarnings("serial") public class DepartmentSelector extends CustomField<Department> { private ComboBox geographicalDepartment = new ComboBox();
From source file org.lunifera.runtime.web.vaadin.components.fields.BeanReferenceField.java
@SuppressWarnings("serial") public class BeanReferenceField<BEAN> extends CustomField<BEAN> { private ObjectProperty<BEAN> property; private IBeanSearchService<BEAN> searchService; private final Class<BEAN> type;
From source file org.lunifera.runtime.web.vaadin.components.fields.search.SearchField.java
@SuppressWarnings("serial") public abstract class SearchField<C> extends CustomField<C> { private final String id; private final Object propertyId; private DataBindingContext dbContext;
From source file org.opencms.ui.components.fileselect.A_CmsFileSelectField.java
/** * Abstract file select field. Used by {@link org.opencms.ui.components.fileselect.CmsPathSelectField}.<p> * * @param <T> the value type */ public abstract class A_CmsFileSelectField<T> extends CustomField<T> {
From source file org.opennms.features.vaadin.datacollection.AbstractStrategyField.java
/** * The Abstract Strategy Field. * * @author <a href="mailto:agalue@opennms.org">Alejandro Galue</a> */ @SuppressWarnings("serial")
From source file org.opennms.features.vaadin.datacollection.CollectField.java
/**
* The Collect Field.
*
* TODO: when a new group is added, the groupField must be updated.
*
* @author <a href="mailto:agalue@opennms.org">Alejandro Galue</a>
From source file org.opennms.features.vaadin.datacollection.IncludeCollectionField.java
/** * The Include Collection Field. * * @author <a href="mailto:agalue@opennms.org">Alejandro Galue</a> */ @SuppressWarnings("serial")