Uses of Class
net.infonode.docking.OperationAbortedException

Packages that use OperationAbortedException
net.infonode.docking Core classes for the docking windows framework. 
 

Uses of OperationAbortedException in net.infonode.docking
 

Methods in net.infonode.docking that throw OperationAbortedException
protected  void DockingWindow.beforeDrop(DockingWindow target)
           
 void DockingWindow.closeWithAbort()
          Same as DockingWindow.close(), but the DockingWindowListener.windowClosing(DockingWindow) method of the window listeners will be called before closing the window, giving them the possibility to abort the close operation.
 void DockingWindow.dockWithAbort()
          Same as DockingWindow.dock(), but the DockingWindowListener.windowDocking(DockingWindow) method of the window listeners will be called before docking the window, giving them the possibility to abort the dock operation.
private  void DockingWindow.fireWindowClosing(DockingWindow window)
           
(package private)  void DockingWindow.fireWindowDocking(DockingWindow window)
           
(package private)  void DockingWindow.fireWindowMaximizing(DockingWindow window)
           
(package private)  void DockingWindow.fireWindowMinimizing(DockingWindow window)
           
(package private)  void DockingWindow.fireWindowRestoring(DockingWindow window)
           
(package private)  void DockingWindow.fireWindowUndocking(DockingWindow window)
           
 void DockingWindow.maximizeWithAbort()
          Same as DockingWindow.maximize(), but the DockingWindowListener.windowMaximized(DockingWindow) method of the window listeners will be called before maximizing the window, giving them the possibility to abort the maximize operation.
 void DockingWindow.minimizeWithAbort()
          Same as DockingWindow.minimize(), but the DockingWindowListener.windowMinimizing(DockingWindow) method of the window listeners will be called before minimizing the window, giving them the possibility to abort the minimize operation.
 void DockingWindow.minimizeWithAbort(Direction direction)
          Same as DockingWindow.minimize(Direction), but the DockingWindowListener.windowMinimizing(DockingWindow) method of the window listeners will be called before minimizing the window, giving them the possibility to abort the minimize operation.
 void DockingWindow.restoreWithAbort()
          Same as DockingWindow.restore(), but the DockingWindowListener.windowRestoring(DockingWindow) method of the window listeners will be called before restoring the window, giving them the possibility to abort the restore operation.
 FloatingWindow DockingWindow.undockWithAbort(java.awt.Point location)
          Same as DockingWindow.undock(Point), but the DockingWindowListener.windowUndocking(DockingWindow) method of the window listeners will be called before undocking the window, giving them the possibility to abort the undock operation.
 void DockingWindowListener.windowClosing(DockingWindow window)
           Called before the window that this listener is added to, or a child window of that window, is closed.
 void DockingWindowAdapter.windowClosing(DockingWindow window)
           
 void DockingWindowListener.windowDocking(DockingWindow window)
           Called before the window that this listener is added to, or a child window of that window, is docked.
 void DockingWindowAdapter.windowDocking(DockingWindow window)
           
 void DockingWindowListener.windowMaximizing(DockingWindow window)
           Called before the window that this listener is added to, or a child window of that window, is maximized.
 void DockingWindowAdapter.windowMaximizing(DockingWindow window)
           
 void DockingWindowListener.windowMinimizing(DockingWindow window)
           Called before the window that this listener is added to, or a child window of that window, is minimized.
 void DockingWindowAdapter.windowMinimizing(DockingWindow window)
           
 void DockingWindowListener.windowRestoring(DockingWindow window)
           Called before the window that this listener is added to, or a child window of that window, is restored.
 void DockingWindowAdapter.windowRestoring(DockingWindow window)
           
 void DockingWindowListener.windowUndocking(DockingWindow window)
           Called before the window that this listener is added to, or a child window of that window, is undocked.
 void DockingWindowAdapter.windowUndocking(DockingWindow window)