public interface HandleDisplay
An interface that describe an object that can be displayed.
- Since:
- 1.0.11
- Version:
- "1.0.14" - b202111241200L
- Author:
- Julien SEINTURIER - Université de Toulon / CNRS LIS umr 7020 - github.com/jorigin/jcommon (contact@jorigin.org)
-
Method Summary
Modifier and TypeMethodDescriptionbooleanGet if the object display state can be modified.booleanGet if the object is currently displaying.voidsetStateDisplayable(boolean displayable) Set if the object display state can be modified.voidsetStateDisplaying(boolean displaying) Set if the object has to be displaying.
-
Method Details
-
isStateDisplaying
boolean isStateDisplaying()Get if the object is currently displaying.- Returns:
trueif the object is currently displaying andfalseotherwise.- See Also:
-
setStateDisplaying
void setStateDisplaying(boolean displaying) Set if the object has to be displaying. This method has to modify the display state only if itsdisplayabilityis set totrue.- Parameters:
displaying-trueif the object is currently displaying andfalseotherwise.- See Also:
-
isStateDisplayable
boolean isStateDisplayable()Get if the object display state can be modified.- Returns:
trueif the object display state can be modified andfalseotherwise.- See Also:
-
setStateDisplayable
void setStateDisplayable(boolean displayable) Set if the object display state can be modified.- Parameters:
displayable-trueif the object display state can be modified andfalseotherwise.- See Also:
-