Java Doc for ListRendererBase.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

All known Subclasses:   com.sun.rave.web.ui.renderer.SelectRenderer,  com.sun.rave.web.ui.renderer.OrderableListRenderer,  com.sun.rave.web.ui.renderer.AddRemoveRenderer,  com.sun.rave.web.ui.renderer.DropDownRenderer,  com.sun.rave.web.ui.renderer.EditableListRenderer,  com.sun.rave.web.ui.renderer.ListboxRenderer,
ListRendererBase
abstract public class ListRendererBase extends Renderer (Code)
The ListRendererBase is the base class for the listbox renderers (Drop-down Menu and Selectable List). These are both rendered using the same HTML tag (select) so a lot of the renderering functionality is shared.


Field Summary
final protected static  StringSEPARATOR
    
final public static  String[]STRING_ATTRIBUTES
    


Method Summary
public  voiddecode(FacesContext context, UIComponent component)
     Retrieve user input from the UI.
protected  voiddecode(FacesContext context, UIComponent component, String id)
     Retrieve user input from the UI.
public  voidencodeChildren(javax.faces.context.FacesContext context, javax.faces.component.UIComponent component)
     Overrides encodeChildren of Renderer to do nothing.
protected  StringgetOnChangeJavaScript(ListManager component, String functionName, FacesContext context)
     Append the webui component's own JavaScript function at the end of any component-specific event handling code.
public  booleangetRendersChildren()
     The list is not responsible for rendering any child components, so this method returns false.
 String[]getUserInput(FacesContext context, UIComponent component)
     Retrieves the selected values as Strings.
 voidlog(String s)
     Log an error - only used during development time.
protected  voidrenderHiddenValue(UIComponent component, FacesContext context, ResponseWriter writer, String hiddenStyle)
    
protected  voidrenderList(ListManager component, String id, FacesContext context, String[] styles)
     This is the base method for rendering a HTML select element.
 voidrenderListComponent(ListSelector 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.

 voidrenderListOption(UIComponent list, ListItem listItem, ResponseWriter writer, String[] styles)
     This is the method responsible for rendering an individual option for a HTML select element.
Parameters:
  option - The ListItem to render
Parameters:
  writer - The ResponseWriter used to render the option
Parameters:
  styles - A String array of styles used to render thecomponent.
 voidrenderListOptions(UIComponent component, Iterator optionsIterator, ResponseWriter writer, String[] styles)
     This is the method responsible for rendering the options of a HTML select element.
protected  voidrenderOpenEncloser(ListManager component, FacesContext context, String element, String hiddenStyle)
    

Renders the opening div tag.


Parameters:
  component - The component associated with therenderer.
 voidrenderReadOnlyList(ListManager component, UIComponent label, FacesContext context, String hiddenStyle)
     This method is used by some of the renderers that extend ListRenderBase (not ListBox and DropDown).
 voidrenderSeparator(UIComponent component, ResponseWriter writer, String style)
     This method is responsible for rendering a separator for an option group.

Field Detail
SEPARATOR
final protected static String SEPARATOR(Code)



STRING_ATTRIBUTES
final public static String[] STRING_ATTRIBUTES(Code)

The list of attribute names in the HTML 4.01 Specification that correspond to the entity type %events;.






Method Detail
decode
public void decode(FacesContext context, UIComponent component)(Code)
Retrieve user input from the UI.
Parameters:
  context - The FacesContext of this request
Parameters:
  component - The component associated with the renderer



decode
protected void decode(FacesContext context, UIComponent component, String id)(Code)
Retrieve user input from the UI. The expected format of the request parameter of interest is valuevalue ... If a value is an empty string the format is If there is no value there is a single separator.
Parameters:
  context - The FacesContext of this request
Parameters:
  component - The component associated with the renderer
Parameters:
  id - The DOM id of the select element which represents the value of the list



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.



getOnChangeJavaScript
protected String getOnChangeJavaScript(ListManager component, String functionName, FacesContext context)(Code)
Append the webui component's own JavaScript function at the end of any component-specific event handling code.
Parameters:
  component - The ListManager for which we create the function call
Parameters:
  functionName - The name of the function
Parameters:
  context - The FacesContext of this request



getRendersChildren
public boolean getRendersChildren()(Code)
The list is not responsible for rendering any child components, so this method returns false. (This is unintuitive, but it causes the right behaviour). I need to understand this better.



getUserInput
String[] getUserInput(FacesContext context, UIComponent component)(Code)
Retrieves the selected values as Strings.
Parameters:
  context - The FacesContext of this request
Parameters:
  component - The component associated with the renderer



log
void log(String s)(Code)
Log an error - only used during development time.



renderHiddenValue
protected void renderHiddenValue(UIComponent component, FacesContext context, ResponseWriter writer, String hiddenStyle) throws IOException(Code)



renderList
protected void renderList(ListManager component, String id, 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(ListSelector 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



renderListOption
void renderListOption(UIComponent list, ListItem listItem, ResponseWriter writer, String[] styles) throws IOException(Code)
This is the method responsible for rendering an individual option for a HTML select element.
Parameters:
  option - The ListItem to render
Parameters:
  writer - The ResponseWriter used to render the option
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



renderListOptions
void renderListOptions(UIComponent component, Iterator optionsIterator, ResponseWriter writer, String[] styles) throws IOException(Code)
This is the method responsible for rendering the options of a HTML select element. This method is based on the corresponding method from the JSF RI, so the options to be specified using the JSF SelectItem construct. This will have to be replaced - see the renderList method for details.

Note - option groups are not yet implemented w.r.t. any styles specified by the HCI guidelines.
Parameters:
  component - The UI Component associated with the renderer
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




renderOpenEncloser
protected void renderOpenEncloser(ListManager component, FacesContext context, String element, String hiddenStyle) throws IOException(Code)

Renders the opening div tag.


Parameters:
  component - The component associated with therenderer. Must implement ListManager
Parameters:
  context - The FacesContext of the request
Parameters:
  element - One of "span" or "div"
throws:
  java.io.IOException - if the renderer fails to write tothe response



renderReadOnlyList
void renderReadOnlyList(ListManager component, UIComponent label, FacesContext context, String hiddenStyle) throws IOException(Code)
This method is used by some of the renderers that extend ListRenderBase (not ListBox and DropDown). I should probably refactor things so that we always know what the hidden style is instead - then renderListComponent would do. TODO.



renderSeparator
void renderSeparator(UIComponent component, ResponseWriter writer, String style) throws IOException(Code)
This method is responsible for rendering a separator for an option group.
Parameters:
  option - The component for which we render the separator
Parameters:
  writer - The ResponseWriter used to render the separator
Parameters:
  style - The style to use when rendering the option.
throws:
  java.io.IOException - if the renderer fails to write tothe response



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