PATH
Mac OS X Documentation >
Application Kit Reference: Java
[Previous] [Class List] [Next]
Inherits
from: java.lang.Object
Package: com.apple.yellow.application
Class Description
<<Description Forthcoming>>
Instance Methods
public abstract void windowDidBecomeKey (NSNotification
aNotification)
Sent by the default notification
center immediately after an NSWindow has become key. aNotification is
always NSWindowDidBecomeKeyNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
public abstract void windowDidBecomeMain (NSNotification
aNotification)
Sent by the default notification
center immediately after an NSWindow has become main. aNotification is
always NSWindowDidBecomeMainNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
public abstract void windowDidChangeScreen (NSNotification aNotification)
Sent by the default notification
center immediately after an NSWindow has changed screens. aNotification is
always NSWindowDidChangeScreenNotification. You can retrieve the
NSWindow object in question by sending object to aNotification.
public abstract void windowDidDeminiaturize (NSNotification aNotification)
Sent by the default notification
center immediately after an NSWindow has been deminiaturized. aNotification is
always NSWindowDidDeminiaturizeNotification. You can retrieve the
NSWindow object in question by sending object to aNotification.
public abstract void windowDidExpose (NSNotification
aNotification)
Sent by the default notification
center immediately after an NSWindow has been exposed. aNotification is
always NSWindowDidExposeNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
public abstract void windowDidMiniaturize (NSNotification aNotification)
Sent by the default notification
center immediately after an NSWindow has been miniaturized. aNotification is
always NSWindowDidMiniaturizeNotification. You can retrieve the
NSWindow object in question by sending object to aNotification.
public abstract void windowDidMove (NSNotification
aNotification)
Sent by the default notification
center immediately after an NSWindow has been moved. aNotification is
always NSWindowDidMoveNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
public abstract void windowDidResignKey (NSNotification)
Sent by the default notification
center immediately after an NSWindow has resigned its status as
key window. aNotification is
always NSWindowDidResignKeyNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
public abstract void windowDidResignMain (NSNotification
aNotification)
Sent by the default notification
center immediately after an NSWindow has resigned its status as
main window. aNotification is
always NSWindowDidResignMainNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
public abstract void windowDidResize (NSNotification
aNotification)
Sent by the default notification
center immediately after an NSWindow has been resized. aNotification is
always NSWindowDidResizeNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
public abstract void windowDidUpdate (NSNotification
aNotification)
Sent by the default notification
center immediately after an NSWindow receives an update message. aNotification is
always NSWindowDidUpdateNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
public abstract void windowWillClose (NSNotification
aNotification)
Sent by the default notification
center immediately before an NSWindow closes. aNotification is
always NSWindowWillCloseNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
public abstract void windowWillMiniaturize (NSNotification aNotification)
Sent by the default notification
center immediately before an NSWindow is miniaturized. aNotification is
always NSWindowWillMiniaturizeNotification. You can retrieve the
NSWindow object in question by sending object to aNotification.
public abstract void windowWillMove (NSNotification
aNotification)
Sent by the default notification
center immediately before an NSWindow is moved. aNotification is
always NSWindowWillMoveNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
[Previous] [Next]