Uses of Interface
com.itmill.toolkit.data.Validatable

Packages that use Validatable
com.itmill.toolkit.data Provides interfaces for the data layer which contains classes for typed data values, data collections, and handlers. 
com.itmill.toolkit.ui Provides interfaces and classes in the IT Mill Toolkit. 
 

Uses of Validatable in com.itmill.toolkit.data
 

Subinterfaces of Validatable in com.itmill.toolkit.data
 interface BufferedValidatable
           This interface defines the combination of Validatable and Buffered interfaces.
 

Uses of Validatable in com.itmill.toolkit.ui
 

Subinterfaces of Validatable in com.itmill.toolkit.ui
 interface Field
           
 

Classes in com.itmill.toolkit.ui that implement Validatable
 class AbstractField
           Abstract field component for implementing buffered property editors.
 class AbstractSelect
           A class representing a selection of items the user has selected in a UI.
 class Button
          A generic button component.
 class CheckBox
           
 class ComboBox
          A filtering dropdown single-select.
 class DateField
           A date editor component that can be bound to any bindable Property. that is compatible with java.util.Date.
 class Form
          Form component provides easy way of creating and managing sets fields.
 class InlineDateField
           A date entry component, which displays the actual date selector inline.
 class ListSelect
          This is a simple list select without, for instance, support for new items, lazyloading, and other advanced features.
 class NativeSelect
          This is a simple drop-down select without, for instance, support for multiselect, new items, lazyloading, and other advanced features.
 class OptionGroup
          Configures select to be used as an option group.
 class PopupDateField
           A date entry component, which displays the actual date selector as a popup.
 class ProgressIndicator
          ProgressIndicator is component that shows user state of a process (like long computing or file upload) ProgressIndicator has two mainmodes.
 class RichTextArea
          A simple RichTextEditor to edit HTML format text.
 class Select
           A class representing a selection of items the user has selected in a UI.
 class Slider
          TODO comment Example code: class MyPlayer extends CustomComponent implements ValueChangeListener { Label volumeIndicator = new Label(); Slider slider; public MyPlayer() { OrderedLayout ol = new OrderedLayout(); setCompositionRoot(ol); slider = new Slider("Volume", 0, 100); slider.setImmediate(true); ol.addComponent(slider); ol.addComponent(volumeIndicator); volumeIndicator.setValue(new Double(50)); slider.addListener(this); } public void setVolume(double d) { volumeIndicator.setValue("Current volume : " + d); } public void valueChange(ValueChangeEvent event) { Double d = (Double) event.getProperty().getValue(); setVolume(d.doubleValue()); } }
 class Table
           TableComponent is used for representing data or components in pageable and selectable table.
 class TextField
           A text editor component that can be bound to any bindable Property.
 class Tree
          MenuTree component.
 class TwinColSelect
          Multiselect component with two lists: left side for available items and right side for selected items.
 



Copyright © 2000-2009 IT Mill Ltd. All Rights Reserved.