GWT 2.1.1

Uses of Interface
com.google.gwt.user.client.TakesValue

Packages that use TakesValue
com.google.gwt.editor.client A framework for editing bean-like objects. 
com.google.gwt.editor.client.adapters Adapters for the bean editor framework. 
com.google.gwt.editor.client.testing   
com.google.gwt.editor.ui.client.adapters User interface adapters for the bean editor framework. 
com.google.gwt.user.client.ui Widgets, Panels, and other user-interface classes. 
com.google.gwt.user.datepicker.client The date picker widget and associated types. 
 

Uses of TakesValue in com.google.gwt.editor.client
 

Subinterfaces of TakesValue in com.google.gwt.editor.client
 interface LeafValueEditor<T>
          Used to edit non-object or immutable values.
 

Uses of TakesValue in com.google.gwt.editor.client.adapters
 

Classes in com.google.gwt.editor.client.adapters that implement TakesValue
 class OptionalFieldEditor<T,E extends Editor<T>>
          This adapter can be used when a type being edited has an optional field that may be nullified or reassigned as part of the editing process.
 class SimpleEditor<T>
          A trivial implementation of LeafValueEditor than can be used for "hidden" properties when composing UI-based Editors.
 class TakesValueEditor<T>
          Adapts the TakesValue interface to the Editor framework.
 

Methods in com.google.gwt.editor.client.adapters with parameters of type TakesValue
static
<T> TakesValueEditor<T>
TakesValueEditor.of(TakesValue<T> peer)
          Returns a new ValueEditor that modifies the given TakesValue peer instance.
 

Constructors in com.google.gwt.editor.client.adapters with parameters of type TakesValue
TakesValueEditor(TakesValue<T> peer)
          Returns a new ValueEditor that modifies the given TakesValue peer instance.
 

Uses of TakesValue in com.google.gwt.editor.client.testing
 

Classes in com.google.gwt.editor.client.testing that implement TakesValue
 class FakeLeafValueEditor<T>
          A no-op Editor.
 

Uses of TakesValue in com.google.gwt.editor.ui.client.adapters
 

Classes in com.google.gwt.editor.ui.client.adapters that implement TakesValue
 class HasTextEditor
          Adapts the HasText interface to the Editor framework.
 class ValueBoxEditor<T>
          Adapts the ValueBoxBase interface to the Editor framework.
 

Uses of TakesValue in com.google.gwt.user.client.ui
 

Subinterfaces of TakesValue in com.google.gwt.user.client.ui
 interface HasConstrainedValue<T>
          Implemented by widgets that pick from a set of values.
 interface HasValue<T>
          Extends TakesValue to allow the value to be pulled back out, and to throw ValueChangeEvent events.
 

Classes in com.google.gwt.user.client.ui that implement TakesValue
 class CheckBox
          A standard check box widget.
 class DateLabel
          Extends ValueLabel for convenience when dealing with dates and DateTimeFormat, especially in UiBinder templates.
 class DoubleBox
          A ValueBox that uses DoubleParser and DoubleRenderer.
 class Hidden
          Represents a hidden field in an HTML form.
 class IntegerBox
          A ValueBox that uses IntegerParser and IntegerRenderer.
 class LongBox
          A ValueBox that uses LongParser and LongRenderer.
 class NumberLabel<T extends Number>
          Extends ValueLabel for convenience when dealing with numbers and NumberFormat, especially in UiBinder templates.
 class PasswordTextBox
          A text box that visually masks its input to prevent eavesdropping.
 class RadioButton
          A mutually-exclusive selection radio button widget.
 class SimpleCheckBox
          A simple checkbox widget, with no label.
 class SimpleRadioButton
          A simple radio button widget, with no label.
 class SuggestBox
          A SuggestBox is a text box or text area which displays a pre-configured set of selections that match the user's input.
 class TextArea
          A text box that allows multiple lines of text to be entered.
 class TextBox
          A standard single-line text box.
 class TextBoxBase
          Abstract base class for most text entry widgets.
 class ToggleButton
          A ToggleButton is a stylish stateful button which allows the user to toggle between up and down states.
 class ValueBox<T>
          A text box able to parse its displayed value.
 class ValueBoxBase<T>
          Abstract base class for all text entry widgets.
 class ValueLabel<T>
          A label displaying its value through a renderer.
 class ValueListBox<T>
          Implementation of HasConstrainedValue based on a SelectElement.
 class ValuePicker<T>
          Allows the user to pick a single value from a list.
 

Uses of TakesValue in com.google.gwt.user.datepicker.client
 

Classes in com.google.gwt.user.datepicker.client that implement TakesValue
 class DateBox
          A text box that shows a DatePicker when the user focuses on it.
 class DatePicker
          Standard GWT date picker.
 


GWT 2.1.1