-
- All Known Subinterfaces:
JImageFeature
public interface HandleDisplayAn interface that describe an object that can be displayed.- Since:
- 1.0.11
- Version:
- "1.0.12" - b202004280800L
- Author:
- Julien Seinturier - COMEX S.A. - contact@jorigin.org - https://github.com/jorigin/jeometry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisStateDisplayable()Get if the object display state can be modified.booleanisStateDisplaying()Get 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 Detail
-
isStateDisplaying
boolean isStateDisplaying()
Get if the object is currently displaying.- Returns:
trueif the object is currently displaying andfalseotherwise.- See Also:
setStateDisplaying(boolean)
-
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:
isStateDisplaying()
-
isStateDisplayable
boolean isStateDisplayable()
Get if the object display state can be modified.- Returns:
trueif the object display state can be modified andfalseotherwise.- See Also:
isStateDisplaying(),setStateDisplayable(boolean)
-
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:
setStateDisplaying(boolean),isStateDisplayable()
-
-