Package org.eclipse.swt.browser
Interface StatusTextListener
-
- All Superinterfaces:
java.util.EventListener
,SWTEventListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface StatusTextListener extends SWTEventListener
This listener interface may be implemented in order to receive aStatusTextEvent
notification when the status text for aBrowser
is changed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
changed(StatusTextEvent event)
This method is called when the status text is changed.
-
-
-
Method Detail
-
changed
void changed(StatusTextEvent event)
This method is called when the status text is changed. The status text is typically displayed in the status bar of a browser application.The following fields in the
StatusTextEvent
apply:- (in) text the modified status text
- (in) widget the
Browser
whose status text is changed
- Parameters:
event
- theStatusTextEvent
that contains the updated status description of aBrowser
- Since:
- 3.0
-
-