Java Doc for MultiSelectControl.java in  » Web-Framework » aranea-mvc-1.1.1 » org » araneaframework » uilib » form » control » 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 » aranea mvc 1.1.1 » org.araneaframework.uilib.form.control 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.araneaframework.uilib.form.control.BaseControl
   org.araneaframework.uilib.form.control.StringArrayRequestControl
      org.araneaframework.uilib.form.control.MultiSelectControl

MultiSelectControl
public class MultiSelectControl extends StringArrayRequestControl implements DisplayItemContainer(Code)
This class represents a multiselect control (aka list).
author:
   Jevgeni Kabanov (ekabanov at araneaframework dot org)

Inner Class :public class ViewModel extends StringArrayRequestControl.ViewModel

Field Summary
protected  Listitems
     The org.araneaframework.uilib.util.DisplayItemUtil .


Method Summary
public  voidaddDisplayItems(Collection valueObjects, String valueName, String labelName)
     Adds the display-items corresponding to the given value and label fields in Value Object.
public  voidaddFromBeanCollection(Collection beanCollection, String valueName, String displayStringName)
     Creates DisplayItem s corresponding to beans in beanCollection and adds these to this MultiSelectControl .
public  voidaddFromBeanCollection(Collection beanCollection, String valueName, Transformer displayTransformer)
     Creates DisplayItem s corresponding to beans in beanCollection and adds these to this MultiSelectControl .
public  voidaddFromBeanCollection(Collection beanCollection, Transformer valueTransformer, String displayStringName)
     Creates DisplayItem s corresponding to beans in beanCollection and adds these to this MultiSelectControl .
public  voidaddFromBeanCollection(Collection beanCollection, Transformer valueTransformer, Transformer displayTransformer)
     Creates DisplayItem s corresponding to beans in beanCollection and adds these to this MultiSelectControl .
public  voidaddItem(DisplayItem item)
     Adds a display-item to the element.
public  voidaddItems(Collection items)
     Adds a display-items to the element.
public  voidclearItems()
     Clears the list of select-items.
protected  String[]convertToStringArray(Collection data)
     Converts the given List<String> to a String[].
Parameters:
  data - List<String>.
protected  ObjectfromRequestParameters(String[] parameterValues)
     Converts String[] to List<String>.
public  ListgetDisplayItems()
    
public  StringgetRawValueType()
     Returns "List<String>".
public  intgetValueIndex(String value)
    
public  ObjectgetViewModel()
     Returns ViewModel .
protected  String[]preprocessRequestParameters(String[] parameterValues)
     Removes all empty strings from the String[] request parameters.
protected  String[]toResponseParameters(Object controlValue)
     Converts List<String> to String[].
protected  voidvalidateNotNull()
    

Field Detail
items
protected List items(Code)
The org.araneaframework.uilib.util.DisplayItemUtil .





Method Detail
addDisplayItems
public void addDisplayItems(Collection valueObjects, String valueName, String labelName)(Code)
Adds the display-items corresponding to the given value and label fields in Value Object.
Parameters:
  valueObjects - Collection of Value Objects.
Parameters:
  valueName - the name of the Value Object field corresponding to the value of the selectitem.
Parameters:
  labelName - the name of the Value Object field corresponding to the label of the selectitem.MultiSelectControl.addFromBeanCollection(CollectionStringString)



addFromBeanCollection
public void addFromBeanCollection(Collection beanCollection, String valueName, String displayStringName)(Code)
Creates DisplayItem s corresponding to beans in beanCollection and adds these to this MultiSelectControl .
Parameters:
  beanCollection - Collection of beans
Parameters:
  valueName - name of bean field that determines DisplayItems value
Parameters:
  displayStringName - name of bean field that determines DisplayItems displayString
since:
   1.1



addFromBeanCollection
public void addFromBeanCollection(Collection beanCollection, String valueName, Transformer displayTransformer)(Code)
Creates DisplayItem s corresponding to beans in beanCollection and adds these to this MultiSelectControl .
Parameters:
  beanCollection - Collection of beans
Parameters:
  valueName - name of bean field that determines DisplayItems value
Parameters:
  displayTransformer - Transformer producing label (DisplayItems displayString) for a bean
since:
   1.1



addFromBeanCollection
public void addFromBeanCollection(Collection beanCollection, Transformer valueTransformer, String displayStringName)(Code)
Creates DisplayItem s corresponding to beans in beanCollection and adds these to this MultiSelectControl .
Parameters:
  beanCollection - Collection of beans
Parameters:
  valueTransformer - Transformer producing value (DisplayItem.getValue) from a bean.
Parameters:
  displayStringName - name of bean field that determines DisplayItems displayString
since:
   1.1



addFromBeanCollection
public void addFromBeanCollection(Collection beanCollection, Transformer valueTransformer, Transformer displayTransformer)(Code)
Creates DisplayItem s corresponding to beans in beanCollection and adds these to this MultiSelectControl .
Parameters:
  beanCollection - Collection of beans
Parameters:
  valueTransformer - Transformer producing value (DisplayItem.getValue) from a bean.
Parameters:
  displayTransformer - Transformer producing label (displayString) from a bean
since:
   1.1



addItem
public void addItem(DisplayItem item)(Code)
Adds a display-item to the element.
Parameters:
  item - the item to be added.



addItems
public void addItems(Collection items)(Code)
Adds a display-items to the element.
Parameters:
  items - the items to be added.



clearItems
public void clearItems()(Code)
Clears the list of select-items.



convertToStringArray
protected String[] convertToStringArray(Collection data)(Code)
Converts the given List<String> to a String[].
Parameters:
  data - List<String>. String[].



fromRequestParameters
protected Object fromRequestParameters(String[] parameterValues)(Code)
Converts String[] to List<String>.



getDisplayItems
public List getDisplayItems()(Code)



getRawValueType
public String getRawValueType()(Code)
Returns "List<String>". "List<String>".



getValueIndex
public int getValueIndex(String value)(Code)



getViewModel
public Object getViewModel()(Code)
Returns ViewModel . ViewModel.



preprocessRequestParameters
protected String[] preprocessRequestParameters(String[] parameterValues)(Code)
Removes all empty strings from the String[] request parameters.



toResponseParameters
protected String[] toResponseParameters(Object controlValue)(Code)
Converts List<String> to String[].



validateNotNull
protected void validateNotNull()(Code)



Fields inherited from org.araneaframework.uilib.form.control.StringArrayRequestControl
protected StandardControlEventListenerAdapter eventHelper(Code)(Java Doc)

Methods inherited from org.araneaframework.uilib.form.control.StringArrayRequestControl
public void addOnChangeEventListener(OnChangeEventListener onChangeEventListener)(Code)(Java Doc)
public void clearOnChangeEventListeners()(Code)(Java Doc)
public void convert()(Code)(Java Doc)
abstract protected Object fromRequestParameters(String[] parameterValues)(Code)(Java Doc)
public Object getViewModel()(Code)(Java Doc)
protected void init() throws Exception(Code)(Java Doc)
abstract protected String[] preprocessRequestParameters(String[] parameterValues)(Code)(Java Doc)
protected void readFromRequest(HttpInputData request)(Code)(Java Doc)
public void setRawValue(Object value)(Code)(Java Doc)
abstract protected String[] toResponseParameters(Object controlValue)(Code)(Java Doc)
public void validate()(Code)(Java Doc)
protected void validateNotNull()(Code)(Java Doc)

Fields inherited from org.araneaframework.uilib.form.control.BaseControl
protected Object innerData(Code)(Java Doc)
protected boolean isReadFromRequest(Code)(Java Doc)
protected Object value(Code)(Java Doc)

Methods inherited from org.araneaframework.uilib.form.control.BaseControl
public Widget.Interface _getWidget()(Code)(Java Doc)
protected void action(Path path, InputData input, OutputData output) throws Exception(Code)(Java Doc)
protected void addError(String error)(Code)(Java Doc)
public void convert()(Code)(Java Doc)
public void convertAndValidate()(Code)(Java Doc)
public FormElementContext getFormElementCtx()(Code)(Java Doc)
protected String getLabel()(Code)(Java Doc)
public Object getRawValue()(Code)(Java Doc)
public Object getViewModel() throws Exception(Code)(Java Doc)
protected void handleEvent(InputData input) throws Exception(Code)(Java Doc)
protected void init() throws Exception(Code)(Java Doc)
public boolean isDisabled()(Code)(Java Doc)
protected boolean isMandatory()(Code)(Java Doc)
public boolean isRead()(Code)(Java Doc)
protected boolean isValid()(Code)(Java Doc)
protected void readFromRequest(HttpInputData request)(Code)(Java Doc)
public void setFormElementCtx(FormElementContext formElementContext)(Code)(Java Doc)
public void setRawValue(Object value)(Code)(Java Doc)
protected void update(InputData input) throws Exception(Code)(Java Doc)
public void validate()(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.