Example usage for com.google.gwt.user.client.ui ListBox subclass-usage

List of usage examples for com.google.gwt.user.client.ui ListBox subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui ListBox subclass-usage.

Usage

From source file ar.com.kyol.jet.client.wrappers.HoursBox.java

public class HoursBox extends ListBox {

    public HoursBox() {
        super();
        for (int i = 0; i < 24; i++) {
            this.addItem(Integer.toString(i));

From source file ar.com.kyol.jet.client.wrappers.MinutesBox.java

public class MinutesBox extends ListBox {

    /**
     * Instantiates a new minutes box.
     */
    public MinutesBox() {

From source file burrito.client.crud.widgets.MultiValueListBox.java

public class MultiValueListBox extends ListBox {

    public static Comparator<CrudNameIdPair> DISPLAY_NAME_SORTER = new Comparator<CrudNameIdPair>() {

        public int compare(CrudNameIdPair o1, CrudNameIdPair o2) {
            return o1.getDisplayName().compareToIgnoreCase(o2.getDisplayName());

From source file ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.amc.RoleListBox.java

/**
 * {@link ListBox} with RoleSets.
 * 
 * @author Izabela Adamczyk
 */
public class RoleListBox extends ListBox {

From source file com.agnie.gwt.common.client.widget.ListBox.java

/**
 * 
 */
public class ListBox<T> extends com.google.gwt.user.client.ui.ListBox {

    private List<T> list;

From source file com.arcbees.chosen.client.gwt.ChosenListBox.java

public class ChosenListBox extends ListBox implements HasAllChosenHandlers {
    private static final String OPTGROUP_TAG = "optgroup";

    private EventBus chznHandlerManager;
    private ChosenOptions options;
    private boolean visible = true;

From source file com.bearsoft.gwt.ui.widgets.StyledListBox.java

/**
 * 
 * @author mg
 */
public class StyledListBox<T> extends ListBox implements HasValue<T> {

From source file com.dawg6.gwt.client.widgets.ComboBox.java

public abstract class ComboBox<T extends PersistentObject> extends ListBox implements ObservableListInterface<T> {

    protected final ObservableList<T> list = new ObservableList<T>();
    private final List<SelectionChangedHandler<T>> selectionChangedHandlers = new Vector<SelectionChangedHandler<T>>();

    public interface SelectionChangedHandler<T> {

From source file com.dawg6.gwt.client.widgets.EnumSelectionBox.java

public class EnumSelectionBox<T extends Enum<T>> extends ListBox implements Field {

    private Class<T> clazz;
    private String noValue;

    public interface Adapter<T> {

From source file com.dawg6.gwt.client.widgets.GenericComboBox.java

public abstract class GenericComboBox<T> extends ListBox implements ObservableListInterface<T> {

    protected final ObservableList<T> list = new ObservableList<T>();
    private final List<SelectionChangedHandler<T>> selectionChangedHandlers = new Vector<SelectionChangedHandler<T>>();

    public interface SelectionChangedHandler<T> {