Source Code Cross Referenced for ComponentListener.java in  » Ajax » gwtext-2.01 » com » gwtext » client » widgets » event » 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 » Ajax » gwtext 2.01 » com.gwtext.client.widgets.event 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * GWT-Ext Widget Library
003:         * Copyright(c) 2007-2008, GWT-Ext.
004:         * licensing@gwt-ext.com
005:         * 
006:         * http://www.gwt-ext.com/license
007:         */
008:
009:        package com.gwtext.client.widgets.event;
010:
011:        import com.google.gwt.core.client.JavaScriptObject;
012:        import com.gwtext.client.widgets.Component;
013:
014:        /**
015:         * Component Listener
016:         */
017:        public interface ComponentListener {
018:
019:            /**
020:             * Fires before the component is destroyed. Return false to stop the destroy.
021:             *
022:             * @param component this
023:             * @return false to stop destroy
024:             */
025:            boolean doBeforeDestroy(Component component);
026:
027:            /**
028:             * Fires before the component is hidden. Return false to stop the hide.
029:             *
030:             * @param component this
031:             * @return false to stop hide
032:             */
033:            boolean doBeforeHide(Component component);
034:
035:            /**
036:             * Fires before the component is rendered. Return false to stop the render.
037:             *
038:             * @param component this
039:             * @return false to stop render
040:             */
041:            boolean doBeforeRender(Component component);
042:
043:            /**
044:             * Fires before the component is shown. Return false to stop the show.
045:             *
046:             * @param component this
047:             * @return false to stop show
048:             */
049:            boolean doBeforeShow(Component component);
050:
051:            /**
052:             * Fires before the state of the component is restored. Return false to stop the restore.
053:             *
054:             * @param component this
055:             * @param state     the component state
056:             * @return false to stop the restore
057:             */
058:            boolean doBeforeStateRestore(Component component,
059:                    JavaScriptObject state);
060:
061:            /**
062:             * Fires before the state of the component is saved to the configured state provider. Return false to stop the save.
063:             *
064:             * @param component this
065:             * @param state     the component state
066:             * @return false to stop the save
067:             */
068:            boolean doBeforeStateSave(Component component,
069:                    JavaScriptObject state);
070:
071:            /**
072:             * Fires after the component is destroyed.
073:             *
074:             * @param component this
075:             */
076:            void onDestroy(Component component);
077:
078:            /**
079:             * Fires after the component is disabled.
080:             *
081:             * @param component this
082:             */
083:            void onDisable(Component component);
084:
085:            /**
086:             * Fires after the component is enabled.
087:             *
088:             * @param component this
089:             */
090:            void onEnable(Component component);
091:
092:            /**
093:             * Fires after the component is hidden.
094:             *
095:             * @param component this
096:             */
097:            void onHide(Component component);
098:
099:            /**
100:             * Fires after the component is rendered.
101:             *
102:             * @param component this
103:             */
104:            void onRender(Component component);
105:
106:            /**
107:             * Fires after the component is shown.
108:             *
109:             * @param component this
110:             */
111:            void onShow(Component component);
112:
113:            /**
114:             * Fires after the state of the component is restored.
115:             *
116:             * @param component this
117:             * @param state     the component state
118:             */
119:            void onStateRestore(Component component, JavaScriptObject state);
120:
121:            /**
122:             * Fires after the state of the component is saved to the configured state provider.
123:             *
124:             * @param component this
125:             * @param state     the component state
126:             */
127:            void onStateSave(Component component, JavaScriptObject state);
128:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.