com.vaadin.ui.
Class ProgressIndicator
java.lang.Object
com.vaadin.ui.AbstractComponent
com.vaadin.ui.AbstractField
com.vaadin.ui.ProgressIndicator
All Implemented Interfaces:
Buffered, BufferedValidatable, Property, Property.Editor, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer, Validatable, Action.ShortcutNotifier, MethodEventSource, Paintable, Sizeable, VariableOwner, Component, Component.Focusable, Field, Serializable, EventListener
- extends AbstractField
- implements Property, Property.Viewer, Property.ValueChangeListener
public class ProgressIndicator
ProgressIndicator
is component that shows user state of a
process (like long computing or file upload)
ProgressIndicator
has two mainmodes. One for indeterminate
processes and other (default) for processes which progress can be measured
May view an other property that indicates progress 0...1
Since:
4
Version:
6.8.18
Author:
Vaadin Ltd.
See Also:
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractField |
---|
AbstractField.FocusShortcut, AbstractField.ReadOnlyStatusChangeEvent |
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractComponent |
---|
AbstractComponent.ComponentErrorEvent, AbstractComponent.ComponentErrorHandler |
Nested classes/interfaces inherited from interface com.vaadin.data.Property |
---|
Property.ConversionException, Property.Editor, Property.ReadOnlyException, Property.ReadOnlyStatusChangeEvent, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeEvent, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer |
Nested classes/interfaces inherited from interface com.vaadin.ui.Field |
---|
Field.ValueChangeEvent |
Nested classes/interfaces inherited from interface com.vaadin.data.Buffered |
---|
Buffered.SourceException |
Field Summary | |
---|---|
static int |
CONTENT_PREFORMATTED
Content mode, where the label contains preformatted text. |
static int |
CONTENT_TEXT
Content mode, where the label contains only plain text. |
Constructor Summary | |
---|---|
ProgressIndicator()
Creates an a new ProgressIndicator. |
|
ProgressIndicator(Float value)
Creates a new instance of ProgressIndicator with given state. |
|
ProgressIndicator(Property contentSource)
Creates a new instance of ProgressIndicator with stae read from given datasource. |
Method Summary | |
---|---|
boolean |
getContentMode()
Gets the mode of ProgressIndicator. |
int |
getPollingInterval()
Gets the interval that component checks for progress. |
Property |
getPropertyDataSource()
Gets the viewing data-source property. |
Class<?> |
getType()
Returns the type of the Property. |
Object |
getValue()
Gets the value of the ProgressIndicator. |
boolean |
isIndeterminate()
Gets whether or not the ProgressIndicator is indeterminate. |
boolean |
isReadOnly()
Is the component read-only ? Readonly is not used in ProgressIndicator - this returns allways false. |
void |
paintContent(PaintTarget target)
Paints the content of this component. |
void |
setIndeterminate(boolean newValue)
Sets wheter or not the ProgressIndicator is indeterminate. |
void |
setPollingInterval(int newValue)
Sets the interval that component checks for progress. |
void |
setPropertyDataSource(Property newDataSource)
Sets the property as data-source for viewing. |
void |
setReadOnly(boolean readOnly)
Sets the component to read-only. |
void |
setValue(Object newValue)
Sets the value of the ProgressIndicator. |
String |
toString()
Returns the value of the Property in human readable textual format. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.vaadin.data.Property.ValueChangeListener |
---|
valueChange |
Methods inherited from interface com.vaadin.ui.Field |
---|
getDescription, setCaption, setDescription |
Field Detail |
---|
CONTENT_TEXT
public static final int CONTENT_TEXT
- See Also:
- Constant Field Values
Content mode, where the label contains only plain text. The getValue() result is coded to XML when painting.
CONTENT_PREFORMATTED
public static final int CONTENT_PREFORMATTED
- See Also:
- Constant Field Values
Content mode, where the label contains preformatted text.
Constructor Detail |
---|
ProgressIndicator
public ProgressIndicator()
Creates an a new ProgressIndicator.
ProgressIndicator
public ProgressIndicator(Float value)
- Parameters:
value
-
Creates a new instance of ProgressIndicator with given state.
ProgressIndicator
public ProgressIndicator(Property contentSource)
- Parameters:
contentSource
-
Creates a new instance of ProgressIndicator with stae read from given datasource.
Method Detail |
---|
setReadOnly
public void setReadOnly(boolean readOnly)
- Specified by:
setReadOnly
in interfaceProperty
- Specified by:
setReadOnly
in interfaceComponent
- Overrides:
setReadOnly
in classAbstractField
- Parameters:
readOnly
- True to enable read-only mode, False to disable it.- See Also:
Component.setReadOnly(boolean)
Sets the component to read-only. Readonly is not used in ProgressIndicator.
isReadOnly
public boolean isReadOnly()
- Specified by:
isReadOnly
in interfaceProperty
- Specified by:
isReadOnly
in interfaceComponent
- Overrides:
isReadOnly
in classAbstractField
- Returns:
- True if the component is in read only mode.
- See Also:
Component.setReadOnly(boolean)
Is the component read-only ? Readonly is not used in ProgressIndicator - this returns allways false.
paintContent
public void paintContent(PaintTarget target)
throws PaintException
- Overrides:
paintContent
in classAbstractField
- Parameters:
target
- the Paint Event.- Throws:
PaintException
- if the Paint Operation fails.
Paints the content of this component.
getValue
public Object getValue()
- Specified by:
getValue
in interfaceProperty
- Overrides:
getValue
in classAbstractField
- Returns:
- the Value of the ProgressIndicator.
- See Also:
AbstractField.getValue()
Gets the value of the ProgressIndicator. Value of the ProgressIndicator is Float between 0 and 1.
setValue
public void setValue(Object newValue)
- Specified by:
setValue
in interfaceProperty
- Overrides:
setValue
in classAbstractField
- Parameters:
newValue
- the New value of the ProgressIndicator.- See Also:
AbstractField.setValue(java.lang.Object)
Sets the value of the ProgressIndicator. Value of the ProgressIndicator is the Float between 0 and 1.
toString
public String toString()
- Specified by:
toString
in interfaceProperty
- Overrides:
toString
in classAbstractField
- Returns:
String
representation of the value stored in the Property- See Also:
AbstractField.toString()
Description copied from class: AbstractField
Returns the value of the Property in human readable textual format.
getType
public Class<?> getType()
- Specified by:
getType
in interfaceProperty
- Specified by:
getType
in classAbstractField
- Returns:
- type of the Property
- See Also:
AbstractField.getType()
Description copied from interface: Property
Returns the type of the Property. The methods getValue
and
setValue
must be compatible with this type: one must be able
to safely cast the value returned from getValue
to the given
type and pass any variable assignable to this type as an argument to
setValue
.
getPropertyDataSource
public Property getPropertyDataSource()
- Specified by:
getPropertyDataSource
in interfaceProperty.Viewer
- Overrides:
getPropertyDataSource
in classAbstractField
- Returns:
- the datasource.
- See Also:
AbstractField.getPropertyDataSource()
Gets the viewing data-source property.
setPropertyDataSource
public void setPropertyDataSource(Property newDataSource)
- Specified by:
setPropertyDataSource
in interfaceProperty.Viewer
- Overrides:
setPropertyDataSource
in classAbstractField
- Parameters:
newDataSource
- the new data source.- See Also:
AbstractField.setPropertyDataSource(com.vaadin.data.Property)
Sets the property as data-source for viewing.
getContentMode
public boolean getContentMode()
- Returns:
- true if in indeterminate mode.
Gets the mode of ProgressIndicator.
setIndeterminate
public void setIndeterminate(boolean newValue)
- Parameters:
newValue
- true to set to indeterminate mode.
Sets wheter or not the ProgressIndicator is indeterminate.
isIndeterminate
public boolean isIndeterminate()
- Returns:
- true to set to indeterminate mode.
Gets whether or not the ProgressIndicator is indeterminate.
setPollingInterval
public void setPollingInterval(int newValue)
- Parameters:
newValue
- the interval in milliseconds.
Sets the interval that component checks for progress.
getPollingInterval
public int getPollingInterval()
- Returns:
- the interval in milliseconds.
Gets the interval that component checks for progress.