Java Doc for AddRemoveRenderer.java in  » IDE-Netbeans » visualweb.api.designer » com » sun » rave » web » ui » renderer » 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 » IDE Netbeans » visualweb.api.designer » com.sun.rave.web.ui.renderer 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.sun.rave.web.ui.renderer.ListRendererBase
   com.sun.rave.web.ui.renderer.AddRemoveRenderer

AddRemoveRenderer
public class AddRemoveRenderer extends ListRendererBase (Code)

Renderer for a com.sun.rave.web.ui.component.AddRemove component.





Method Summary
public  voiddecode(FacesContext context, UIComponent component)
    
public  voidencodeChildren(javax.faces.context.FacesContext context, javax.faces.component.UIComponent component)
     Overrides encodeChildren of Renderer to do nothing.
public  voidencodeEnd(FacesContext context, UIComponent component)
    

Render the list.

protected  voidrenderAvailableList(AddRemove component, FacesContext context, String[] styles)
     This is the base method for rendering a HTML select element.
 voidrenderListComponent(AddRemove component, FacesContext context, String[] styles)
    

This method determines whether the component should be rendered as a standalone list, or laid out together with a label that was defined as part of the component.

A label will be rendered if either of the following is true:

  • The page author defined a label facet; or
  • The page author specified text in the label attribute.

If there is a label, the component will be laid out using a HTML table.

protected  voidrenderSelectedList(AddRemove component, FacesContext context, String[] styles)
     This is the base method for rendering a HTML select element.



Method Detail
decode
public void decode(FacesContext context, UIComponent component)(Code)
Decodes the value of the component
Parameters:
  context - The FacesContext of the request
Parameters:
  component - The component instance to be decoded



encodeChildren
public void encodeChildren(javax.faces.context.FacesContext context, javax.faces.component.UIComponent component) throws java.io.IOException(Code)
Overrides encodeChildren of Renderer to do nothing. This renderer renders its own children, but not through this method.
Parameters:
  context - The FacesContext of the request
Parameters:
  component - The component associated with therenderer. Must be a subclass of ListSelector.
throws:
  java.io.IOException - if something goes wrong while writing the children



encodeEnd
public void encodeEnd(FacesContext context, UIComponent component) throws IOException(Code)

Render the list.
Parameters:
  context - FacesContext for the current request
Parameters:
  component - UIComponent to be renderedend should be rendered
exception:
  IOException - if an input/output error occurs




renderAvailableList
protected void renderAvailableList(AddRemove component, FacesContext context, String[] styles) throws IOException(Code)
This is the base method for rendering a HTML select element. This method is based on the functionality of the RI version, so it invokes a method renderSelectItems which in term invokes renderSelectItem. Currently, this renderer requires for the options to be specified using the JSF SelectItem construct, but this should be replaced with a Lockhart version, because the JSF version lacks the ability to associate an id with the list item. I'm not sure whether it should be possible to use SelectItem as well yet.
Parameters:
  component - The UI Component associated with therenderer.
Parameters:
  context - The FacesContext of the request
Parameters:
  styles - A String array of styles used to render thecomponent. The first item of the array is the name of theJavaScript method that handles change event. The second item isthe style used when the list is enabled. The third style is theone to use when the list is disabled. The fourth item is thestyle to use for an item that is enabled, the fifth to use foran item that is disabled, and the sixth to use when the item isselected.
throws:
  java.io.IOException - if the renderer fails to write tothe response



renderListComponent
void renderListComponent(AddRemove component, FacesContext context, String[] styles) throws IOException(Code)

This method determines whether the component should be rendered as a standalone list, or laid out together with a label that was defined as part of the component.

A label will be rendered if either of the following is true:

  • The page author defined a label facet; or
  • The page author specified text in the label attribute.

If there is a label, the component will be laid out using a HTML table. If not, the component will be rendered as a standalone HTML select element.


Parameters:
  component - The component associated with therenderer. Must be a subclass of ListSelector.
Parameters:
  context - The FacesContext of the request
Parameters:
  styles - A String array of styles used to render thecomponent. The first item of the array is the name of theJavaScript method that handles change event. The second item isthe style used when the list is enabled. The third style is theone to use when the list is disabled. The fourth item is thestyle to use for an item that is enabled, the fifth to use foran item that is disabled, and the sixth to use when the item isselected.
throws:
  java.io.IOException - if the renderer fails to write tothe response



renderSelectedList
protected void renderSelectedList(AddRemove component, FacesContext context, String[] styles) throws IOException(Code)
This is the base method for rendering a HTML select element. This method is based on the functionality of the RI version, so it invokes a method renderSelectItems which in term invokes renderSelectItem. Currently, this renderer requires for the options to be specified using the JSF SelectItem construct, but this should be replaced with a Lockhart version, because the JSF version lacks the ability to associate an id with the list item. I'm not sure whether it should be possible to use SelectItem as well yet.
Parameters:
  component - The UI Component associated with therenderer.
Parameters:
  context - The FacesContext of the request
Parameters:
  styles - A String array of styles used to render thecomponent. The first item of the array is the name of theJavaScript method that handles change event. The second item isthe style used when the list is enabled. The third style is theone to use when the list is disabled. The fourth item is thestyle to use for an item that is enabled, the fifth to use foran item that is disabled, and the sixth to use when the item isselected.
throws:
  java.io.IOException - if the renderer fails to write tothe response



Fields inherited from com.sun.rave.web.ui.renderer.ListRendererBase
final protected static String SEPARATOR(Code)(Java Doc)
final public static String[] STRING_ATTRIBUTES(Code)(Java Doc)

Methods inherited from com.sun.rave.web.ui.renderer.ListRendererBase
public void decode(FacesContext context, UIComponent component)(Code)(Java Doc)
protected void decode(FacesContext context, UIComponent component, String id)(Code)(Java Doc)
public void encodeChildren(javax.faces.context.FacesContext context, javax.faces.component.UIComponent component) throws java.io.IOException(Code)(Java Doc)
protected String getOnChangeJavaScript(ListManager component, String functionName, FacesContext context)(Code)(Java Doc)
public boolean getRendersChildren()(Code)(Java Doc)
String[] getUserInput(FacesContext context, UIComponent component)(Code)(Java Doc)
void log(String s)(Code)(Java Doc)
protected void renderHiddenValue(UIComponent component, FacesContext context, ResponseWriter writer, String hiddenStyle) throws IOException(Code)(Java Doc)
protected void renderList(ListManager component, String id, FacesContext context, String[] styles) throws IOException(Code)(Java Doc)
void renderListComponent(ListSelector component, FacesContext context, String[] styles) throws IOException(Code)(Java Doc)
void renderListOption(UIComponent list, ListItem listItem, ResponseWriter writer, String[] styles) throws IOException(Code)(Java Doc)
void renderListOptions(UIComponent component, Iterator optionsIterator, ResponseWriter writer, String[] styles) throws IOException(Code)(Java Doc)
protected void renderOpenEncloser(ListManager component, FacesContext context, String element, String hiddenStyle) throws IOException(Code)(Java Doc)
void renderReadOnlyList(ListManager component, UIComponent label, FacesContext context, String hiddenStyle) throws IOException(Code)(Java Doc)
void renderSeparator(UIComponent component, ResponseWriter writer, String style) throws IOException(Code)(Java Doc)

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