|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectnet.infonode.docking.DockingWindowAdapter
public class DockingWindowAdapter
Adapter class which implements the DockingWindowListener methods with empty bodies.
| Constructor Summary | |
|---|---|
DockingWindowAdapter()
|
|
| Method Summary | |
|---|---|
void |
viewFocusChanged(View previouslyFocusedView,
View focusedView)
Called when the focus moves from one view to another view. |
void |
windowAdded(DockingWindow addedToWindow,
DockingWindow addedWindow)
Called when a window has been added. |
void |
windowClosed(DockingWindow window)
Called after the window that this listener is added to, or a child window of that window, has been closed. |
void |
windowClosing(DockingWindow window)
Called before the window that this listener is added to, or a child window of that window, is closed. |
void |
windowDocked(DockingWindow window)
Called when a view has been docked in the root window. |
void |
windowDocking(DockingWindow window)
Called before the window that this listener is added to, or a child window of that window, is docked. |
void |
windowHidden(DockingWindow window)
Called when a window is hidden, for example when it is deselected in a TabWindow. |
void |
windowMaximized(DockingWindow window)
Called after the window that this listener is added to, or a child window of that window, has been maximized. |
void |
windowMaximizing(DockingWindow window)
Called before the window that this listener is added to, or a child window of that window, is maximized. |
void |
windowMinimized(DockingWindow window)
Called after the window that this listener is added to, or a child window of that window, has been minimized. |
void |
windowMinimizing(DockingWindow window)
Called before the window that this listener is added to, or a child window of that window, is minimized. |
void |
windowRemoved(DockingWindow removedFromWindow,
DockingWindow removedWindow)
Called when a window has been removed. |
void |
windowRestored(DockingWindow window)
Called after the window that this listener is added to, or a child window of that window, has been restored. |
void |
windowRestoring(DockingWindow window)
Called before the window that this listener is added to, or a child window of that window, is restored. |
void |
windowShown(DockingWindow window)
Called when a window is shown, for example when it is selected in a TabWindow. |
void |
windowUndocked(DockingWindow window)
Called after the window that this listener is added to, or a child window of that window, has been undocked. |
void |
windowUndocking(DockingWindow window)
Called before the window that this listener is added to, or a child window of that window, is undocked. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DockingWindowAdapter()
| Method Detail |
|---|
public void windowShown(DockingWindow window)
DockingWindowListener
windowShown in interface DockingWindowListenerwindow - the window that was shownpublic void windowHidden(DockingWindow window)
DockingWindowListener
windowHidden in interface DockingWindowListenerwindow - the window that was hidden
public void viewFocusChanged(View previouslyFocusedView,
View focusedView)
DockingWindowListener
viewFocusChanged in interface DockingWindowListenerpreviouslyFocusedView - the view that had focus before the focus moved, null means no view had focusfocusedView - the view that got focus, null means no view got focus
public void windowAdded(DockingWindow addedToWindow,
DockingWindow addedWindow)
DockingWindowListener
windowAdded in interface DockingWindowListeneraddedToWindow - the parent window that the window was added toaddedWindow - the window that was added
public void windowRemoved(DockingWindow removedFromWindow,
DockingWindow removedWindow)
DockingWindowListener
windowRemoved in interface DockingWindowListenerremovedFromWindow - the parent window that the window was removed fromremovedWindow - the window that was removed
public void windowClosing(DockingWindow window)
throws OperationAbortedException
DockingWindowListenerCalled before the window that this listener is added to, or a child window of that window, is closed.
Note that this method is only called when DockingWindow.closeWithAbort() is called explicitly, not
when a window is implicitly closed as a result of another method call. Throwing an OperationAbortedException
will cause the close operation to be aborted.
windowClosing in interface DockingWindowListenerwindow - the window that is closing
OperationAbortedException - if this exception is thrown the close operation will be abortedpublic void windowClosed(DockingWindow window)
DockingWindowListenerCalled after the window that this listener is added to, or a child window of that window, has been closed.
Note that this method is only called when DockingWindow.close() or DockingWindow.closeWithAbort()
is called explicitly, not when a window is implicitly closed as a result of another method call.
windowClosed in interface DockingWindowListenerwindow - the window that has been closed
public void windowUndocking(DockingWindow window)
throws OperationAbortedException
DockingWindowListenerCalled before the window that this listener is added to, or a child window of that window, is undocked.
Note that this method is only called when DockingWindow.undockWithAbort(java.awt.Point) is called explicitly, not
when a window is implicitly undocked as a result of another method call. Throwing an OperationAbortedException
will cause the undock operation to be aborted.
windowUndocking in interface DockingWindowListenerwindow - the window that is undocking
OperationAbortedException - if this exception is thrown the undock operation will be abortedpublic void windowUndocked(DockingWindow window)
DockingWindowListenerCalled after the window that this listener is added to, or a child window of that window, has been undocked.
This method is called when a window is undocked using DockingWindow.undock(java.awt.Point),
DockingWindow.undockWithAbort(java.awt.Point) or is added to a window that is undocked.
windowUndocked in interface DockingWindowListenerwindow - the window that has been undocked
public void windowDocking(DockingWindow window)
throws OperationAbortedException
DockingWindowListenerCalled before the window that this listener is added to, or a child window of that window, is docked.
Note: that this method is only called when DockingWindow.dockWithAbort() is called explicitly, not
when a window is implicitly docked as a result of another method call. Throwing an OperationAbortedException
will cause the dock operation to be aborted.
windowDocking in interface DockingWindowListenerwindow - the window that is docking
OperationAbortedException - if this exception is thrown the dock operation will be aborted i.e. no views in the
window will be dockedpublic void windowDocked(DockingWindow window)
DockingWindowListenerCalled when a view has been docked in the root window.
Note: If a window containing more than one view was docked then this method will be called for each view after all views have been docked.
windowDocked in interface DockingWindowListenerwindow - the view that has been dockedpublic void windowMinimized(DockingWindow window)
DockingWindowListener
windowMinimized in interface DockingWindowListenerwindow - the window that has been minimizedpublic void windowMaximized(DockingWindow window)
DockingWindowListener
windowMaximized in interface DockingWindowListenerwindow - the window that has been maximizedpublic void windowRestored(DockingWindow window)
DockingWindowListenerCalled after the window that this listener is added to, or a child window of that window, has been restored.
Note that this method is only called when DockingWindow.restore()
is called explicitly, not when a window is implicitly restored as a result of another method call.
windowRestored in interface DockingWindowListenerwindow - the window that has been restored
public void windowMaximizing(DockingWindow window)
throws OperationAbortedException
DockingWindowListenerCalled before the window that this listener is added to, or a child window of that window, is maximized.
Note: that this method is only called when DockingWindow.maximizeWithAbort() is called
explicitly, not when a window is implicitly docked as a result of another method call. Throwing an
OperationAbortedException will cause the maximize operation to be aborted.
windowMaximizing in interface DockingWindowListenerwindow - the window that is maximizing
OperationAbortedException - if this exception is thrown the maximize operation will be aborted
public void windowMinimizing(DockingWindow window)
throws OperationAbortedException
DockingWindowListenerCalled before the window that this listener is added to, or a child window of that window, is minimized.
Note: that this method is only called when DockingWindow.minimizeWithAbort() is called
explicitly, not when a window is implicitly docked as a result of another method call. Throwing an
OperationAbortedException will cause the minimize operation to be aborted.
windowMinimizing in interface DockingWindowListenerwindow - the window that is minimizing
OperationAbortedException - if this exception is thrown the minimize operation will be aborted
public void windowRestoring(DockingWindow window)
throws OperationAbortedException
DockingWindowListenerCalled before the window that this listener is added to, or a child window of that window, is restored.
Note: that this method is only called when DockingWindow.restoreWithAbort() is called
explicitly, not when a window is implicitly restored as a result of another method call. Throwing an
OperationAbortedException will cause the restore operation to be aborted.
windowRestoring in interface DockingWindowListenerwindow - the window that is restoring
OperationAbortedException - if this exception is thrown the restore operation will be aborted
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||