Java Doc for BaseFormEventImpl.java in  » Portal » gridsphere » org » gridsphere » provider » event » jsr » impl » 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 » Portal » gridsphere » org.gridsphere.provider.event.jsr.impl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.gridsphere.provider.event.jsr.impl.BaseFormEventImpl

All known Subclasses:   org.gridsphere.provider.event.jsr.impl.RenderFormEventImpl,  org.gridsphere.provider.event.jsr.impl.ActionFormEventImpl,
BaseFormEventImpl
abstract public class BaseFormEventImpl (Code)
The FormEventImpl provides methods for creating/retrieving visual beans from the PortletRequest


Field Summary
protected  Stringcid
    
protected  StringcompId
    
protected  List<FileItem>fileItems
    
protected  Localelocale
    
protected static transient  Loglog
    
protected  PortletRequestportletRequest
    
protected  PortletResponseportletResponse
    
protected  Map<String, TagBean>tagBeans
    

Constructor Summary
protected  BaseFormEventImpl()
    
public  BaseFormEventImpl(PortletRequest request, PortletResponse response)
    

Method Summary
protected  voidconfigureBean(TagBean tagBean)
    
protected  voidcreateTagBeans()
     Parses all request parameters for visual beans.
public  ActionComponentBeangetActionComponentBean(String beanId)
    
public  ActionLinkBeangetActionLinkBean(String beanId)
    
public  ActionMenuBeangetActionMenuBean(String beanId)
    
public  ActionMenuItemBeangetActionMenuItemBean(String beanId)
    
public  ActionSubmitBeangetActionSubmitBean(String beanId)
    
protected  StringgetBeanKey(String beanId)
    
public  CalendarBeangetCalendarBean(String beanId)
    
public  CheckBoxBeangetCheckBoxBean(String beanId)
    
public  FileInputBeangetFileInputBean(String beanId)
    
public  FrameBeangetFrameBean(String beanId)
    
public  HiddenFieldBeangetHiddenFieldBean(String beanId)
    
public  ImageBeangetImageBean(String beanId)
    
public  IncludeBeangetIncludeBean(String beanId)
    
public  ListBoxBeangetListBoxBean(String beanId)
    
public  ListBoxItemBeangetListBoxItemBean(String beanId)
    
public  MessageBoxBeangetMessageBoxBean(String beanId)
    
public  PanelBeangetPanelBean(String beanId)
    
public  ParamBeangetParamBean(String beanId)
    
public  PasswordBeangetPasswordBean(String beanId)
    
public  QueryFiltergetQueryFilter(int maxResults, int totalItems)
    
public  RadioButtonBeangetRadioButtonBean(String beanId)
    
public  PortletRequestgetRequest()
    
public  RichTextEditorBeangetRichTextEditorBean(String beanId)
    
public  TableBeangetTableBean(String beanId)
    
public  TableCellBeangetTableCellBean(String beanId)
    
public  TableRowBeangetTableRowBean(String beanId)
    
public  MapgetTagBeans()
    
public  TextAreaBeangetTextAreaBean(String beanId)
    
public  TextBeangetTextBean(String beanId)
    
public  TextEditorBeangetTextEditorBean(String beanId)
    
public  TextFieldBeangetTextFieldBean(String beanId)
    
public  TreeBeangetTreeBean(String beanId)
     Return an existing TreeBean or create a new one.
public  voidlogRequestAttributes()
     Prints the request attributes to stdout.
public  voidlogRequestParameters()
     Prints the request parameters to stdout.
public  voidlogTagBeans()
    
protected  Map<String, String[]>parseFileUpload()
    
public  voidstore()
    

Field Detail
cid
protected String cid(Code)



compId
protected String compId(Code)



fileItems
protected List<FileItem> fileItems(Code)



locale
protected Locale locale(Code)



log
protected static transient Log log(Code)



portletRequest
protected PortletRequest portletRequest(Code)



portletResponse
protected PortletResponse portletResponse(Code)



tagBeans
protected Map<String, TagBean> tagBeans(Code)




Constructor Detail
BaseFormEventImpl
protected BaseFormEventImpl()(Code)



BaseFormEventImpl
public BaseFormEventImpl(PortletRequest request, PortletResponse response)(Code)




Method Detail
configureBean
protected void configureBean(TagBean tagBean)(Code)



createTagBeans
protected void createTagBeans()(Code)
Parses all request parameters for visual beans. A visual bean parameter has the following encoding: ui___name where is a two letter encoding of the kind of visual bean that it is.



getActionComponentBean
public ActionComponentBean getActionComponentBean(String beanId)(Code)
Return an existing ActionComponentBean or create a new one
Parameters:
  beanId - the bean identifier a IncludeBean



getActionLinkBean
public ActionLinkBean getActionLinkBean(String beanId)(Code)
Return an existing ActionLinkBean or create a new one
Parameters:
  beanId - the bean identifier a ActionLinkBean



getActionMenuBean
public ActionMenuBean getActionMenuBean(String beanId)(Code)



getActionMenuItemBean
public ActionMenuItemBean getActionMenuItemBean(String beanId)(Code)



getActionSubmitBean
public ActionSubmitBean getActionSubmitBean(String beanId)(Code)
Return an existing ActionSubmitBean or create a new one
Parameters:
  beanId - the bean identifier a ActionSubmitBean



getBeanKey
protected String getBeanKey(String beanId)(Code)
Returns a bean key identifier using the component identifier
Parameters:
  beanId - the bean identifier the bean key identifier



getCalendarBean
public CalendarBean getCalendarBean(String beanId)(Code)
Return an existing CalendarBean or create a new one
Parameters:
  beanId - the bean identifier a CalendarBean



getCheckBoxBean
public CheckBoxBean getCheckBoxBean(String beanId)(Code)
Return an existing CheckBoxBean or create a new one
Parameters:
  beanId - the bean identifier a CheckBoxBean



getFileInputBean
public FileInputBean getFileInputBean(String beanId) throws IOException(Code)
Return an existing FileInputBean or create a new one
Parameters:
  beanId - the bean identifier a FileInputBean
throws:
  IOException - if an error occurs



getFrameBean
public FrameBean getFrameBean(String beanId)(Code)
Return an existing FrameBean or create a new one
Parameters:
  beanId - the bean identifier a FrameBean



getHiddenFieldBean
public HiddenFieldBean getHiddenFieldBean(String beanId)(Code)
Return an existing HiddenFieldBean or create a new one
Parameters:
  beanId - the bean identifier a HiddenFieldBean



getImageBean
public ImageBean getImageBean(String beanId)(Code)
Return an existing ImageBean or create a new one
Parameters:
  beanId - the bean identifier a ImageBean



getIncludeBean
public IncludeBean getIncludeBean(String beanId)(Code)
Return an existing IncludeBean or create a new one
Parameters:
  beanId - the bean identifier a IncludeBean



getListBoxBean
public ListBoxBean getListBoxBean(String beanId)(Code)
Return an existing ListBoxBean or create a new one
Parameters:
  beanId - the bean identifier a ListBoxBean



getListBoxItemBean
public ListBoxItemBean getListBoxItemBean(String beanId)(Code)
Return an existing ListBoxItemBean or create a new one
Parameters:
  beanId - the bean identifier a ListBoxItemBean



getMessageBoxBean
public MessageBoxBean getMessageBoxBean(String beanId)(Code)
Return an existing MessageBoxBean or create a new one
Parameters:
  beanId - the bean identifier a IncludeBean



getPanelBean
public PanelBean getPanelBean(String beanId)(Code)
Return an existing PanelBean or create a new one
Parameters:
  beanId - the bean identifier a PanelBean



getParamBean
public ParamBean getParamBean(String beanId)(Code)
Return an existing ParamBean or create a new one
Parameters:
  beanId - the bean identifier a ParamBean



getPasswordBean
public PasswordBean getPasswordBean(String beanId)(Code)
Return an existing PasswordBean or create a new one
Parameters:
  beanId - the bean identifier a PasswordBean



getQueryFilter
public QueryFilter getQueryFilter(int maxResults, int totalItems)(Code)



getRadioButtonBean
public RadioButtonBean getRadioButtonBean(String beanId)(Code)
Return an existing RadioButtonBean or create a new one
Parameters:
  beanId - the bean identifier a RadioButtonBean



getRequest
public PortletRequest getRequest()(Code)



getRichTextEditorBean
public RichTextEditorBean getRichTextEditorBean(String beanId)(Code)
Return an existing RichTextEditorBean or create a new one
Parameters:
  beanId - the bean identifier a RichTextEditorBean



getTableBean
public TableBean getTableBean(String beanId)(Code)
Return an existing TableBean or create a new one
Parameters:
  beanId - the bean identifier a TableBean



getTableCellBean
public TableCellBean getTableCellBean(String beanId)(Code)
Return an existing TableCellBean or create a new one
Parameters:
  beanId - the bean identifier a TableCellBean



getTableRowBean
public TableRowBean getTableRowBean(String beanId)(Code)
Return an existing TableRowBean or create a new one
Parameters:
  beanId - the bean identifier a TableRowBean



getTagBeans
public Map getTagBeans()(Code)
Returns the collection of visual tag beans contained by this form event the collection of visual tag beans



getTextAreaBean
public TextAreaBean getTextAreaBean(String beanId)(Code)
Return an existing TextAreaBean or create a new one
Parameters:
  beanId - the bean identifier a TextAreaBean



getTextBean
public TextBean getTextBean(String beanId)(Code)
Return an existing TextBean or create a new one
Parameters:
  beanId - the bean identifier a TextBean



getTextEditorBean
public TextEditorBean getTextEditorBean(String beanId)(Code)
Return an existing TextEditorBean or create a new one
Parameters:
  beanId - the bean identifier a TextEditorBean



getTextFieldBean
public TextFieldBean getTextFieldBean(String beanId)(Code)
Return an existing TextFieldBean or create a new one
Parameters:
  beanId - the bean identifier a TextFieldBean



getTreeBean
public TreeBean getTreeBean(String beanId)(Code)
Return an existing TreeBean or create a new one.
Parameters:
  beanId - bendId of the bean Idetifier a TreeBean



logRequestAttributes
public void logRequestAttributes()(Code)
Prints the request attributes to stdout. Generally used for debugging



logRequestParameters
public void logRequestParameters()(Code)
Prints the request parameters to stdout. Generally used for debugging



logTagBeans
public void logTagBeans()(Code)
Logs all tag bean identifiers, primarily used for debugging



parseFileUpload
protected Map<String, String[]> parseFileUpload()(Code)



store
public void store()(Code)
Stores any created beans into the request



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.