Package net.tnemc.menu.core.viewer
Interface ViewerStatus
- All Known Implementing Classes:
CoreStatus
public interface ViewerStatus
Represents the status of a
viewer
in the menu system.- Since:
- 1.5.0.0
- Author:
- creatorfromhell
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
Checks whether the viewer is currently awaiting chat input.default boolean
changing()
Checks whether the viewer wants to change to a different menu.default boolean
Checks whether the viewer wants to close the menu.
-
Method Details
-
awaitingChatInput
default boolean awaitingChatInput()Checks whether the viewer is currently awaiting chat input.- Returns:
true
if the viewer is awaiting chat input,false
otherwise.
-
closeMenu
default boolean closeMenu()Checks whether the viewer wants to close the menu.- Returns:
true
if the viewer wants to close the menu,false
otherwise.
-
changing
default boolean changing()Checks whether the viewer wants to change to a different menu.- Returns:
true
if the viewer wants to change to a different menu,false
otherwise.
-