Java Doc for DockingWindowListener.java in  » Swing-Library » InfoNode-Docking-Windows » net » infonode » docking » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Swing Library » InfoNode Docking Windows » net.infonode.docking 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


net.infonode.docking.DockingWindowListener

All known Subclasses:   net.infonode.docking.DockingWindowAdapter,
DockingWindowListener
public interface DockingWindowListener (Code)

A listener for DockingWindow events. All events are propagated upwards in the window tree, so a listener will receive events for the window that it was added to and all descendants of that window.

Note: New methods might be added to this interface in the future. To ensure future compatibility inherit from DockingWindowAdapter instead of directly implementing this interface.


author:
   $Author: jesper $
version:
   $Revision: 1.19 $
since:
   IDW 1.1.0




Method Summary
 voidviewFocusChanged(View previouslyFocusedView, View focusedView)
     Called when the focus moves from one view to another view.
 voidwindowAdded(DockingWindow addedToWindow, DockingWindow addedWindow)
     Called when a window has been added.
 voidwindowClosed(DockingWindow window)
    

Called after the window that this listener is added to, or a child window of that window, has been closed.

 voidwindowClosing(DockingWindow window)
    

Called 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.

 voidwindowDocked(DockingWindow window)
    

Called when a view has been docked in the root window.

 voidwindowDocking(DockingWindow window)
    

Called 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.

 voidwindowHidden(DockingWindow window)
     Called when a window is hidden, for example when it is deselected in a TabWindow.
 voidwindowMaximized(DockingWindow window)
     Called after the window that this listener is added to, or a child window of that window, has been maximized.
 voidwindowMaximizing(DockingWindow window)
    

Called 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.

 voidwindowMinimized(DockingWindow window)
     Called after the window that this listener is added to, or a child window of that window, has been minimized.
 voidwindowMinimizing(DockingWindow window)
    

Called 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.

 voidwindowRemoved(DockingWindow removedFromWindow, DockingWindow removedWindow)
     Called when a window has been removed.
 voidwindowRestored(DockingWindow window)
    

Called after the window that this listener is added to, or a child window of that window, has been restored.

 voidwindowRestoring(DockingWindow window)
    

Called 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.

 voidwindowShown(DockingWindow window)
     Called when a window is shown, for example when it is selected in a TabWindow.
 voidwindowUndocked(DockingWindow window)
    

Called after the window that this listener is added to, or a child window of that window, has been undocked.

 voidwindowUndocking(DockingWindow window)
    

Called 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.




Method Detail
viewFocusChanged
void viewFocusChanged(View previouslyFocusedView, View focusedView)(Code)
Called when the focus moves from one view to another view.
Parameters:
  previouslyFocusedView - the view that had focus before the focus moved, null means no view had focus
Parameters:
  focusedView - the view that got focus, null means no view got focus
since:
   IDW 1.3.0



windowAdded
void windowAdded(DockingWindow addedToWindow, DockingWindow addedWindow)(Code)
Called when a window has been added.
Parameters:
  addedToWindow - the parent window that the window was added to
Parameters:
  addedWindow - the window that was added
since:
   IDW 1.3.0



windowClosed
void windowClosed(DockingWindow window)(Code)

Called 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.


Parameters:
  window - the window that has been closed



windowClosing
void windowClosing(DockingWindow window) throws OperationAbortedException(Code)

Called 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.


Parameters:
  window - the window that is closing
throws:
  OperationAbortedException - if this exception is thrown the close operation will be aborted



windowDocked
void windowDocked(DockingWindow window)(Code)

Called 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.


Parameters:
  window - the view that has been docked
since:
   IDW 1.4.0



windowDocking
void windowDocking(DockingWindow window) throws OperationAbortedException(Code)

Called 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.


Parameters:
  window - the window that is docking
throws:
  OperationAbortedException - if this exception is thrown the dock operation will be aborted i.e. no views in thewindow will be docked
since:
   IDW 1.4.0



windowHidden
void windowHidden(DockingWindow window)(Code)
Called when a window is hidden, for example when it is deselected in a TabWindow.
Parameters:
  window - the window that was hidden
since:
   IDW 1.3.0



windowMaximized
void windowMaximized(DockingWindow window)(Code)
Called after the window that this listener is added to, or a child window of that window, has been maximized.
Parameters:
  window - the window that has been maximized
since:
   IDW 1.4.0



windowMaximizing
void windowMaximizing(DockingWindow window) throws OperationAbortedException(Code)

Called 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.


Parameters:
  window - the window that is maximizing
throws:
  OperationAbortedException - if this exception is thrown the maximize operation will be aborted
since:
   IDW 1.4.0



windowMinimized
void windowMinimized(DockingWindow window)(Code)
Called after the window that this listener is added to, or a child window of that window, has been minimized.
Parameters:
  window - the window that has been minimized
since:
   IDW 1.4.0



windowMinimizing
void windowMinimizing(DockingWindow window) throws OperationAbortedException(Code)

Called 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.


Parameters:
  window - the window that is minimizing
throws:
  OperationAbortedException - if this exception is thrown the minimize operation will be aborted
since:
   IDW 1.4.0



windowRemoved
void windowRemoved(DockingWindow removedFromWindow, DockingWindow removedWindow)(Code)
Called when a window has been removed.
Parameters:
  removedFromWindow - the parent window that the window was removed from
Parameters:
  removedWindow - the window that was removed
since:
   IDW 1.3.0



windowRestored
void windowRestored(DockingWindow window)(Code)

Called 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.


Parameters:
  window - the window that has been restored
since:
   IDW 1.4.0



windowRestoring
void windowRestoring(DockingWindow window) throws OperationAbortedException(Code)

Called 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.


Parameters:
  window - the window that is restoring
throws:
  OperationAbortedException - if this exception is thrown the restore operation will be aborted
since:
   IDW 1.4.0



windowShown
void windowShown(DockingWindow window)(Code)
Called when a window is shown, for example when it is selected in a TabWindow.
Parameters:
  window - the window that was shown
since:
   IDW 1.3.0



windowUndocked
void windowUndocked(DockingWindow window)(Code)

Called 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.


Parameters:
  window - the window that has been undocked
since:
   IDW 1.4.0



windowUndocking
void windowUndocking(DockingWindow window) throws OperationAbortedException(Code)

Called 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.


Parameters:
  window - the window that is undocking
throws:
  OperationAbortedException - if this exception is thrown the undock operation will be aborted
since:
   IDW 1.4.0



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.