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


java.lang.Object
   org.araneaframework.jsp.util.AutomaticFormElementUtil

AutomaticFormElementUtil
public class AutomaticFormElementUtil (Code)
Utility class for setting FormElement properties that are needed for rendering them in Aranea JSP with org.araneaframework.jsp.tag.uilib.form.element.AutomaticTagFormElementTag .
author:
   Jevgeni Kabanov (ekabanov at araneaframework dot org)


Field Summary
final public static  MapCONTROLS_TO_DISPLAY_TAGS
    
final public static  MapCONTROLS_TO_EDITABLE_TAGS
    


Method Summary
public static  voidsetFormElementDefaultDisplayTag(FormElement element)
     Assigns the default editable (aka input) tags to given form element.
public static  voidsetFormElementDefaultDisplayTags(FormWidget form)
     Assigns the default display (aka read-only) tags to all of the elements of the form.
public static  voidsetFormElementDefaultEditableTag(FormElement element)
     Assigns the default editable (aka input) tags to given form element.
public static  voidsetFormElementDefaultEditableTags(FormWidget form)
     Assigns the default editable (aka input) tags to all of the elements of the form.
public static  voidsetFormElementTag(FormElement formElement, String tagName, Map tagAttributes)
     Associates FormElement with a JSP tag that AutomaticTagFormElementTag will use for actual rendering of the FormElement .
public static  voidsetFormElementTag(FormWidget form, String formElementId, String tagName, Map tagAttributes)
     Assigns a tag to the specified element.
public static  voidsetFormElementTag(FormElement formElement, String tagName)
     Assigns an attributeless tag to the specified FormElement .
public static  voidsetFormElementTag(FormWidget form, String formElementId, String tagName)
     Assigns an attributeless tag to the specified to the FormElement that belongs to form and has id formElementId.
public static  voidsetFormElementTag(FormElement formElement, String tagName, TagAttr[] attributePairs)
     Assigns specified tag and attributes to the FormElement .
public static  voidsetFormElementTag(FormWidget form, String formElementId, String tagName, TagAttr[] attributePairs)
     Assigns tag with specified attributes to the specified to the FormElement that belongs to form and has id formElementId.
public static  voidsetFormElementViewSelector(FormElement formElement, FormElementViewSelector viewSelector)
     Assigns a FormElementViewSelector viewSelector to the specified FormElement .
public static  voidsetFormElementViewSelector(FormWidget form, String formElementId, FormElementViewSelector viewSelector)
     Assigns a FormElementViewSelector viewSelector to the FormElement that belongs to form and has id formElementId.

Field Detail
CONTROLS_TO_DISPLAY_TAGS
final public static Map CONTROLS_TO_DISPLAY_TAGS(Code)



CONTROLS_TO_EDITABLE_TAGS
final public static Map CONTROLS_TO_EDITABLE_TAGS(Code)





Method Detail
setFormElementDefaultDisplayTag
public static void setFormElementDefaultDisplayTag(FormElement element)(Code)
Assigns the default editable (aka input) tags to given form element.
since:
   1.0.7



setFormElementDefaultDisplayTags
public static void setFormElementDefaultDisplayTags(FormWidget form)(Code)
Assigns the default display (aka read-only) tags to all of the elements of the form.
Parameters:
  form - parent form or composite element.



setFormElementDefaultEditableTag
public static void setFormElementDefaultEditableTag(FormElement element)(Code)
Assigns the default editable (aka input) tags to given form element.
since:
   1.0.7



setFormElementDefaultEditableTags
public static void setFormElementDefaultEditableTags(FormWidget form)(Code)
Assigns the default editable (aka input) tags to all of the elements of the form.
Parameters:
  form - parent form or composite element.



setFormElementTag
public static void setFormElementTag(FormElement formElement, String tagName, Map tagAttributes)(Code)
Associates FormElement with a JSP tag that AutomaticTagFormElementTag will use for actual rendering of the FormElement .
Parameters:
  formElement -
Parameters:
  tagName - name of the tag, without any namespace
Parameters:
  tagAttributes - Map <attributeName, attributeValue>



setFormElementTag
public static void setFormElementTag(FormWidget form, String formElementId, String tagName, Map tagAttributes)(Code)
Assigns a tag to the specified element.
Parameters:
  form - parent form or composite element.
Parameters:
  formElementId - id of the simple element.
Parameters:
  tagName - name of the tag that will be used to render the element.
Parameters:
  tagAttributes - tag custom attributes.



setFormElementTag
public static void setFormElementTag(FormElement formElement, String tagName)(Code)
Assigns an attributeless tag to the specified FormElement .
Parameters:
  formElement - id of the simple element.
Parameters:
  tagName - name of the tag that will be used to render the element, without any namespace.



setFormElementTag
public static void setFormElementTag(FormWidget form, String formElementId, String tagName)(Code)
Assigns an attributeless tag to the specified to the FormElement that belongs to form and has id formElementId.
Parameters:
  form - parent form or composite element.
Parameters:
  formElementId - id of the simple element.
Parameters:
  tagName - name of the tag that will be used to render the element, without any namespace.



setFormElementTag
public static void setFormElementTag(FormElement formElement, String tagName, TagAttr[] attributePairs)(Code)
Assigns specified tag and attributes to the FormElement .
Parameters:
  formElement -
Parameters:
  tagName - name of the tag that will be used to render the element, without any namespace
Parameters:
  attributePairs - tag attributes.



setFormElementTag
public static void setFormElementTag(FormWidget form, String formElementId, String tagName, TagAttr[] attributePairs)(Code)
Assigns tag with specified attributes to the specified to the FormElement that belongs to form and has id formElementId.
Parameters:
  form - parent FormWidget
Parameters:
  formElementId - id of the form element
Parameters:
  tagName - name of the tag that will be used to render the element, without any namespace
Parameters:
  attributePairs - tag attributes.



setFormElementViewSelector
public static void setFormElementViewSelector(FormElement formElement, FormElementViewSelector viewSelector)(Code)
Assigns a FormElementViewSelector viewSelector to the specified FormElement .



setFormElementViewSelector
public static void setFormElementViewSelector(FormWidget form, String formElementId, FormElementViewSelector viewSelector)(Code)
Assigns a FormElementViewSelector viewSelector to the FormElement that belongs to form and has id formElementId.



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.