List of usage examples for com.google.gwt.editor.client.adapters TakesValueEditor of
public static <T> TakesValueEditor<T> of(TakesValue<T> peer)
From source file:de.swm.commons.mobile.client.widgets.date.DateTextBox.java
License:Apache License
@Override public TakesValueEditor<Date> asEditor() { return TakesValueEditor.of(this); }
From source file:org.kaaproject.kaa.server.admin.client.mvp.view.widget.MultiValueListBox.java
License:Apache License
/** * Returns a {@link TakesValueEditor} backed by the ValueListBox. *//* www . j a v a2s. co m*/ public TakesValueEditor<List<T>> asEditor() { if (editor == null) { editor = TakesValueEditor.of(this); } return editor; }