com.vaadin.flow.component.progressbar.
Class GeneratedVaadinProgressBar<R extends GeneratedVaadinProgressBar<R>>
- java.lang.Object
-
- com.vaadin.flow.component.Component
-
- com.vaadin.flow.component.progressbar.GeneratedVaadinProgressBar<R>
-
All Implemented Interfaces:
AttachNotifier
,DetachNotifier
,HasElement
,HasStyle
,HasTheme
,Serializable
Direct Known Subclasses:
@Deprecated @Tag("vaadin-progress-bar") @NpmPackage(value="@vaadin/polymer-legacy-adapter", version="23.5.12") @JsModule("@vaadin/polymer-legacy-adapter/style-modules.js") @JsModule("@vaadin/progress-bar/src/vaadin-progress-bar.js") public abstract class GeneratedVaadinProgressBar<R extends GeneratedVaadinProgressBar<R>> extends Component implements HasStyle, HasTheme
Deprecated.since v23.3, generated classes will be removed in v24.Description copied from corresponding location in WebComponent:
<vaadin-progress-bar>
is a Web Component for progress bars.<vaadin-progress-bar min="0" max="1" value="0.5"> </vaadin-progress-bar>
Styling
The following shadow DOM parts are available for styling:
Part name Description bar
Progress-bar's background value
Progress-bar's foreground See ThemableMixin ? how to apply styles for shadow parts
The following custom properties are available:
Custom property Description Default --vaadin-progress-value
current progress value (between 0 and 1) 0 The following state attributes are available for styling:
Attribute Description Part name indeterminate
Set to an indeterminate progress bar :host See Also:
-
-
Constructor Summary
Constructors Constructor Description GeneratedVaadinProgressBar()
Deprecated.
-
Method Summary
All Methods Modifier and Type Method Description void
addThemeVariants(ProgressBarVariant... variants)
Deprecated.
since v23.3, generated classes will be removed in v24.protected double
getMaxDouble()
Deprecated.
since v23.3, generated classes will be removed in v24.protected double
getMinDouble()
Deprecated.
since v23.3, generated classes will be removed in v24.protected double
getValueDouble()
Deprecated.
since v23.3, generated classes will be removed in v24.protected boolean
isIndeterminateBoolean()
Deprecated.
since v23.3, generated classes will be removed in v24.void
removeThemeVariants(ProgressBarVariant... variants)
Deprecated.
since v23.3, generated classes will be removed in v24.protected void
setIndeterminate(boolean indeterminate)
Deprecated.
since v23.3, generated classes will be removed in v24.protected void
setMax(double max)
Deprecated.
since v23.3, generated classes will be removed in v24.protected void
setMin(double min)
Deprecated.
since v23.3, generated classes will be removed in v24.protected void
setValue(double value)
Deprecated.
since v23.3, generated classes will be removed in v24.-
Methods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getChildren, getElement, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onAttach, onDetach, onEnabledStateChanged, scrollIntoView, set, setElement, setId, setVisible
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListener
-
Methods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListener
-
Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
-
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
Methods inherited from interface com.vaadin.flow.component.HasTheme
addThemeName, addThemeNames, getThemeName, getThemeNames, hasThemeName, removeThemeName, removeThemeNames, setThemeName, setThemeName
-
-
-
-
Method Detail
-
addThemeVariants
@Deprecated public void addThemeVariants(ProgressBarVariant... variants)
Deprecated.since v23.3, generated classes will be removed in v24. UseProgressBar.addThemeVariants(com.vaadin.flow.component.progressbar.ProgressBarVariant...)
instead.Adds theme variants to the component.
Parameters:
variants
- theme variants to add
-
removeThemeVariants
@Deprecated public void removeThemeVariants(ProgressBarVariant... variants)
Deprecated.since v23.3, generated classes will be removed in v24. UseProgressBar.removeThemeVariants(com.vaadin.flow.component.progressbar.ProgressBarVariant...)
instead.Removes theme variants from the component.
Parameters:
variants
- theme variants to remove
-
getValueDouble
@Deprecated protected double getValueDouble()
Deprecated.since v23.3, generated classes will be removed in v24.Description copied from corresponding location in WebComponent:
Current progress value.
This property is not synchronized automatically from the client side, so the returned value may not be the same as in client side.
Returns:
the
value
property from the webcomponent
-
setValue
@Deprecated protected void setValue(double value)
Deprecated.since v23.3, generated classes will be removed in v24.Description copied from corresponding location in WebComponent:
Current progress value.
Parameters:
value
- the double value to set
-
getMinDouble
@Deprecated protected double getMinDouble()
Deprecated.since v23.3, generated classes will be removed in v24.Description copied from corresponding location in WebComponent:
Minimum bound of the progress bar.
This property is not synchronized automatically from the client side, so the returned value may not be the same as in client side.
Returns:
the
min
property from the webcomponent
-
setMin
@Deprecated protected void setMin(double min)
Deprecated.since v23.3, generated classes will be removed in v24.Description copied from corresponding location in WebComponent:
Minimum bound of the progress bar.
Parameters:
min
- the double value to set
-
getMaxDouble
@Deprecated protected double getMaxDouble()
Deprecated.since v23.3, generated classes will be removed in v24.Description copied from corresponding location in WebComponent:
Maximum bound of the progress bar.
This property is not synchronized automatically from the client side, so the returned value may not be the same as in client side.
Returns:
the
max
property from the webcomponent
-
setMax
@Deprecated protected void setMax(double max)
Deprecated.since v23.3, generated classes will be removed in v24.Description copied from corresponding location in WebComponent:
Maximum bound of the progress bar.
Parameters:
max
- the double value to set
-
isIndeterminateBoolean
@Deprecated protected boolean isIndeterminateBoolean()
Deprecated.since v23.3, generated classes will be removed in v24.Description copied from corresponding location in WebComponent:
Indeterminate state of the progress bar. This property takes precedence over other state properties (min, max, value).
This property is not synchronized automatically from the client side, so the returned value may not be the same as in client side.
Returns:
the
indeterminate
property from the webcomponent
-
setIndeterminate
@Deprecated protected void setIndeterminate(boolean indeterminate)
Deprecated.since v23.3, generated classes will be removed in v24.Description copied from corresponding location in WebComponent:
Indeterminate state of the progress bar. This property takes precedence over other state properties (min, max, value).
Parameters:
indeterminate
- the boolean value to set
-
-