Interface PanelPopupWindow
- All Known Implementing Classes:
AbstractPanelPopupWindow,DialogWindow,MenuWindow
public interface PanelPopupWindow
A
PanelPopupWindow is a wrapper around the element (window, dialog,
menu...) which shows the content of a CPanelPopup.- Author:
- Benjamin Sigg
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddListener(PanelPopupWindowListener listener) Adds a listener to this window.voidclose()Makes this window invisiblebooleanisOpen()Tells whether this window is visible or not.voidremoveListener(PanelPopupWindowListener listener) Removes a listener from this window.
-
Method Details
-
close
void close()Makes this window invisible -
isOpen
boolean isOpen()Tells whether this window is visible or not.- Returns:
trueif visible
-
addListener
Adds a listener to this window.- Parameters:
listener- the new listener
-
removeListener
Removes a listener from this window.- Parameters:
listener- the listener
-