Top Description Methods
java.awt.desktop

public Interface AppForegroundListener

extends SystemEventListener

Implementors are notified when the app becomes the foreground app and when it is no longer the foreground app. This notification is useful for hiding and showing transient UI like palette windows which should be hidden when the app is in the background.
Since
9

Method Summary

Modifier and TypeMethod and Description
public void
appMovedToBackground(AppForegroundEvent
event
e
)

Called when the app becomes the background app and another app becomes the foreground app.

public void
appRaisedToForeground(AppForegroundEvent
event
e
)

Called when the app becomes the foreground app.

Method Detail

appMovedToBackgroundback to summary
public void appMovedToBackground(AppForegroundEvent e)

Called when the app becomes the background app and another app becomes the foreground app.

Parameters
e:AppForegroundEvent

event

appRaisedToForegroundback to summary
public void appRaisedToForeground(AppForegroundEvent e)

Called when the app becomes the foreground app.

Parameters
e:AppForegroundEvent

event