Class InternalFrameAdapter
java.lang.Object
javax.swing.event.InternalFrameAdapter
- All Implemented Interfaces:
EventListener, InternalFrameListener
An abstract adapter class for receiving internal frame events.
The methods in this class are empty. This class exists as
convenience for creating listener objects, and is functionally
equivalent to the WindowAdapter class in the AWT.
See How to Write an Internal Frame Listener in The Java Tutorial
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Constructor for subclasses to call. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Invoked when an internal frame is activated.void
Invoked when an internal frame has been closed.void
Invoked when an internal frame is in the process of being closed.void
Invoked when an internal frame is de-activated.void
Invoked when an internal frame is de-iconified.void
Invoked when an internal frame is iconified.void
Invoked when an internal frame has been opened.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
InternalFrameAdapter
protected InternalFrameAdapter()Constructor for subclasses to call.
-
-
Method Details
-
internalFrameOpened
Invoked when an internal frame has been opened.- Specified by:
internalFrameOpened
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInternalFrame
that originated the event- See Also:
-
internalFrameClosing
Invoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.- Specified by:
internalFrameClosing
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInternalFrame
that originated the event- See Also:
-
internalFrameClosed
Invoked when an internal frame has been closed.- Specified by:
internalFrameClosed
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInternalFrame
that originated the event- See Also:
-
internalFrameIconified
Invoked when an internal frame is iconified.- Specified by:
internalFrameIconified
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInternalFrame
that originated the event- See Also:
-
internalFrameDeiconified
Invoked when an internal frame is de-iconified.- Specified by:
internalFrameDeiconified
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInternalFrame
that originated the event- See Also:
-
internalFrameActivated
Invoked when an internal frame is activated.- Specified by:
internalFrameActivated
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInternalFrame
that originated the event- See Also:
-
internalFrameDeactivated
Invoked when an internal frame is de-activated.- Specified by:
internalFrameDeactivated
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInternalFrame
that originated the event- See Also:
-