|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Property.ReadOnlyStatusChangeNotifier | |
---|---|
com.itmill.toolkit.data.util | Provides various utility classes that implement the data layer functionality. |
com.itmill.toolkit.ui | Provides interfaces and classes in the IT Mill Toolkit. |
Uses of Property.ReadOnlyStatusChangeNotifier in com.itmill.toolkit.data.util |
---|
Classes in com.itmill.toolkit.data.util that implement Property.ReadOnlyStatusChangeNotifier | |
---|---|
class |
MethodProperty
Proxy class for creating Properties from pairs of getter and setter methods of a Bean property. |
class |
ObjectProperty
A simple data object containing one typed value. |
class |
PropertyFormatter
Formatting proxy for a property. |
Uses of Property.ReadOnlyStatusChangeNotifier in com.itmill.toolkit.ui |
---|
Classes in com.itmill.toolkit.ui that implement Property.ReadOnlyStatusChangeNotifier | |
---|---|
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |