Example usage for com.google.gwt.editor.client IsEditor interface-usage

List of usage examples for com.google.gwt.editor.client IsEditor interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.editor.client IsEditor interface-usage.

Usage

From source file com.retech.reader.web.client.ui.widget.DateButton.java

/**
 * A button that shows a {@link DatePicker} when clicked.
 */
public class DateButton extends Composite implements HasValue<Date>, IsEditor<LeafValueEditor<Date>> {

    private final Button button;

From source file com.retech.reader.web.client.ui.widget.EditorDecorator.java

/**
 * A simple editor that connects an {@link Editor} with an element to display
 * editor errors.
 * 
 * @param <T> the type of data being edited
 */

From source file com.tasktop.c2c.server.common.profile.web.client.ValidatingTextBox.java

public class ValidatingTextBox extends Composite implements IsEditor<ValueBoxEditor<String>> {

    private FlowPanel flowPanel = new FlowPanel();
    private TextBox textBox = new TextBox();
    private Label label = new Label();

From source file com.tasktop.c2c.server.common.web.client.widgets.chooser.MultiValueChooser.java

/**
 * @author David Green (Tasktop Technologies Inc.)
 * @author Lucas Panjer (Tasktop Technologies Inc.)
 * 
 */
public class MultiValueChooser<T> extends AbstractValueChooser<T>

From source file com.tasktop.c2c.server.common.web.client.widgets.chooser.SingleValueChooser.java

/**
 * @author David Green (Tasktop Technologies Inc.)
 * @author Lucas Panjer (Tasktop Technologies Inc.)
 * 
 */
public class SingleValueChooser<T> extends AbstractValueChooser<T> implements HasValue<T>, IsEditor<Editor<T>> {

From source file com.tasktop.c2c.server.tasks.client.widgets.MultipleTaskProfileChooser.java

public class MultipleTaskProfileChooser
        implements IsEditor<Editor<List<TaskUserProfile>>>, IsWidget, TakesValue<List<TaskUserProfile>> {

    private MultiValueChooser<Person> wrapped;

    public MultipleTaskProfileChooser(SuggestOracle suggest) {

From source file com.tasktop.c2c.server.tasks.client.widgets.SingleTaskProfileChooser.java

public class SingleTaskProfileChooser
        implements IsEditor<Editor<TaskUserProfile>>, IsWidget, TakesValue<TaskUserProfile> {

    private SingleValueChooser<Person> wrapped;

    public SingleTaskProfileChooser(SuggestOracle suggest) {

From source file com.tasktop.c2c.server.tasks.client.widgets.wiki.EditWikiPanel.java

/**
 * @author cmorgan (Tasktop Technologies Inc.)
 * 
 */
public class EditWikiPanel extends Composite implements HasValue<String>, IsEditor<Editor<String>> {

From source file de.knightsoftnet.validators.client.decorators.AbstractDecorator.java

/**
 * This abstract class combines some methods which are used by decorators.
 *
 * @param <T> the type of data being edited
 */
public abstract class AbstractDecorator<T> extends Composite

From source file de.swm.commons.mobile.client.widgets.date.DateTextBox.java

/**
 * Defines a Date selection box.
 * <p/>
 * <p/>
 * {@link Deprecated} use {@link DatePopup} instead, not compatible with iOS5.
 */