Java Doc for IControlContainer.java in  » Web-Framework » jWic » de » jwic » base » 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 » Web Framework » jWic » de.jwic.base 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


de.jwic.base.IControlContainer

All known Subclasses:   de.jwic.base.SessionContext,  de.jwic.base.ControlContainer,
IControlContainer
public interface IControlContainer (Code)
This interface defines methods required by containers.
author:
   Florian Lippisch




Method Summary
public  voidadopt(Control control, String name)
     Adopt a control that has already been created with a different parent.
public  ControlgetControl(String name)
     Returns a Control by its name.
public  IteratorgetControls()
     Returns an Iterator for all controls in this container.
public  SessionContextgetSessionContext()
     Returns the SessionContext.
public  booleanisRenderingRelevant(Control childControl)
     Returns true if the specified childControl is visible.
abstract public  booleanisRequireRedraw()
     Returns true if the control has been changed since the last rendering and must be rendered again to reflect the last changes.
public  voidregisterControl(Control control, String name)
     INTERNAL method used to registers a control with this container.
public  voidremoveControl(String name)
     Remove a control from the container.
abstract public  voidsetRequireRedraw(boolean requireRedraw)
     Set to true if the control needs to be rendered again to reflect the changes of the control since it was last rendered.
public  voidunregisterControl(Control control)
     INTERNAL method used to unregisters a control from this container.



Method Detail
adopt
public void adopt(Control control, String name)(Code)
Adopt a control that has already been created with a different parent. The control is removed from its current parent and added to this container.
Parameters:
  control -
Parameters:
  name - - new name of the control or null if the name should be assigned automatically



getControl
public Control getControl(String name)(Code)
Returns a Control by its name.
Parameters:
  name - java.lang.String



getControls
public Iterator getControls()(Code)
Returns an Iterator for all controls in this container. Iterator of Control objects



getSessionContext
public SessionContext getSessionContext()(Code)
Returns the SessionContext.



isRenderingRelevant
public boolean isRenderingRelevant(Control childControl)(Code)
Returns true if the specified childControl is visible. This method is used by the rendering engine to determine if the specified control can be rendered. By default, it simply returns the childControls visible property. But some container implementations (like the TabStripControl) can override this method to prevent rendering of a child (i.e. a TabControl) that is visible but not 'active.
Parameters:
  childControl -



isRequireRedraw
abstract public boolean isRequireRedraw()(Code)
Returns true if the control has been changed since the last rendering and must be rendered again to reflect the last changes. boolean



registerControl
public void registerControl(Control control, String name)(Code)
INTERNAL method used to registers a control with this container. This method is called automatically within the constructor of a control. Do not use this method directly, thought that subclasses may override this method to get notified if a control is registered.
Parameters:
  control - the Control



removeControl
public void removeControl(String name)(Code)
Remove a control from the container.



setRequireRedraw
abstract public void setRequireRedraw(boolean requireRedraw)(Code)
Set to true if the control needs to be rendered again to reflect the changes of the control since it was last rendered.
Parameters:
  requireRedraw -



unregisterControl
public void unregisterControl(Control control)(Code)
INTERNAL method used to unregisters a control from this container. The control is removed but not destroyed. Do not use this method directly, thought that subclasses may override this method to get notified if a control is removed.
Parameters:
  control - the Control



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