Package mgui.interfaces.graphics
Interface WindowContainer
- All Superinterfaces:
WindowListener
- All Known Implementing Classes:
InterfaceDisplayPanel
,InterfaceSplitPanel
,InterfaceTabbedDisplayPanel
public interface WindowContainer extends WindowListener
Marker interface for all window containers
- Since:
- 1.0
- Version:
- 1.0
- Author:
- Andrew Reid
-
Method Summary
Modifier and Type Method Description void
removeWindow(InterfaceGraphicWindow child)
Removechild
from this container, and notify listeners.void
removeWindow(InterfaceGraphicWindow child, boolean notify)
Removechild
from this container.Methods inherited from interface mgui.interfaces.graphics.WindowListener
windowSourceChanged, windowUpdated
-
Method Details
-
removeWindow
Removechild
from this container, and notify listeners.- Parameters:
child
-
-
removeWindow
Removechild
from this container.- Parameters:
child
-notify
- Whether to notify listeners
-