Interface HandleDisplay


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 Type
    Method
    Description
    boolean
    Get if the object display state can be modified.
    boolean
    Get if the object is currently displaying.
    void
    setStateDisplayable(boolean displayable)
    Set if the object display state can be modified.
    void
    setStateDisplaying(boolean displaying)
    Set if the object has to be displaying.
  • Method Details

    • isStateDisplaying

      boolean isStateDisplaying()
      Get if the object is currently displaying.
      Returns:
      true if the object is currently displaying and false otherwise.
      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 its displayability is set to true.
      Parameters:
      displaying - true if the object is currently displaying and false otherwise.
      See Also:
    • isStateDisplayable

      boolean isStateDisplayable()
      Get if the object display state can be modified.
      Returns:
      true if the object display state can be modified and false otherwise.
      See Also:
    • setStateDisplayable

      void setStateDisplayable(boolean displayable)
      Set if the object display state can be modified.
      Parameters:
      displayable - true if the object display state can be modified and false otherwise.
      See Also: