Package com.biglybt.pif.ui
Interface UIManagerListener
-
- All Known Subinterfaces:
UIManagerListener2
public interface UIManagerListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
UIAttached(UIInstance instance)
Triggered when an UI is attachedvoid
UIDetached(UIInstance instance)
Triggered when an UI is detached
-
-
-
Method Detail
-
UIAttached
void UIAttached(UIInstance instance)
Triggered when an UI is attached- Parameters:
instance
- Check withinstanceof
to see what UI is being attached
-
UIDetached
void UIDetached(UIInstance instance)
Triggered when an UI is detached- Parameters:
instance
- Check withinstanceof
to see what UI is being dettached
-
-