Example usage for Java com.vaadin.ui Slider fields, constructors, methods, implement or subclass
The text is from its open source code.
Slider(String caption) Create a new slider with the caption given as parameter. | |
Slider() Default slider constructor. | |
Slider(int min, int max) Create a new slider with the given range of integers. | |
Slider(double min, double max, int resolution) Create a new slider with the given range and resolution. | |
Slider(String caption, int min, int max) Creates a new slider with the given caption and integer range. |
double | getMax() Gets the maximum slider value. |
double | getMin() Gets the minimum slider value. |
SliderState | getState() |
Double | getValue() |
void | setMax(double max) Sets the maximum slider value. |
void | setMin(double min) Sets the minimum slider value. |
void | setOrientation(SliderOrientation orientation) Sets the orientation of the slider. |
void | setResolution(int resolution) Set a new resolution for the slider. |
void | setValue(Double value) Sets the value of this object. |