public interface LoadingIndicatorConfiguration extends Serializable
Modifier and Type | Method and Description |
---|---|
int |
getFirstDelay()
Returns the delay before the loading indicator is shown.
|
int |
getSecondDelay()
Returns the delay before the loading indicator goes into the "second"
state.
|
int |
getThirdDelay()
Returns the delay before the loading indicator goes into the "third"
state.
|
boolean |
isApplyDefaultTheme()
Returns whether the default theming is applied for the loading indicator,
making it visible for users.
|
void |
setApplyDefaultTheme(boolean applyDefaultTheme)
Sets whether the default theming is applied for the loading indicator.
|
void |
setFirstDelay(int firstDelay)
Sets the delay before the loading indicator is shown.
|
void |
setSecondDelay(int secondDelay)
Sets the delay before the loading indicator goes into the "second" state.
|
void |
setThirdDelay(int thirdDelay)
Sets the delay before the loading indicator goes into the "third" state.
|
void setFirstDelay(int firstDelay)
firstDelay
- The first delay (in ms)int getFirstDelay()
void setSecondDelay(int secondDelay)
secondDelay
- The delay before going into the "second" state (in ms)int getSecondDelay()
void setThirdDelay(int thirdDelay)
thirdDelay
- The delay before going into the "third" state (in ms)int getThirdDelay()
boolean isApplyDefaultTheme()
By default, it is shown (true
) and there is a progress bar on top
of the viewport shown after a delay to the users while there is an active
server request in process.
true
for applying default theme, false
for notvoid setApplyDefaultTheme(boolean applyDefaultTheme)
By default, it is shown (true
) and there is a progress bar on top
of the viewport shown after a delay to the users while there is an active
server request in process.
applyDefaultTheme
- true
to apply default theming, false
for notCopyright © 2023. All rights reserved.