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


java.lang.Object
   org.araneaframework.uilib.list.structure.filter.BaseFilterHelper
      org.araneaframework.uilib.list.structure.filter.FilterHelper

FilterHelper
public class FilterHelper extends BaseFilterHelper (Code)
Standard list filter helper. This class is used to add filters and their form elements to the ListWidget .

THe following filters can be added to the list: EqualFilter , GreaterThanFilter , LowerThanFilter , LikeFilter , NullFilter , RangeFilter , RangeInRangeFilter , SqlFunctionFilter .

There are many methods for adding each filter and their form elements. Note that some methods start with the _ sign. These add filters without adding form elements to them. Use this only if its inevitable. The default behaivor is to add the filter and its form elements at once to enable filter specific form elements (e.g LikeFilter uses TextControl ignoring the field type defined by the list) and avoid many mistakes.

Also many filters can be added as constant filters. This means they are just part of the query but do not depend on the user. For example one would like to add constant filter to get only clients from one region without showing this filter to the user or letting it to be modified.

In other cases, filters are added with form elements no matter if one pass it within the method arguments or no. For each form element (e.g 2 in case of range filter and 1 in case of like filter) one can pass a form element, just a control or none of these. Passing a control means that the form element is automatically created using the other information available for this filter's field - label and type. Not passing the control either just means that the control is automatically created according the the field type (using FormUtil.createControl(Class) )). However if you like to define label or type for a form element, you can predefine them using FilterHelper.addCustomLabel(String,String) and FilterHelper.addFieldType(String,Class) methods. As you could expect, the mandatory is set to false and the initial value is set to null by default.

Their is one more aspect for all filter adding methods. For each method, one can define valueId. The term value is used here to mark the blank in the filter (basically the form element). By default the fieldId is also used as the valueId. So it's unneccesary to pass a valueId unless one would like to add more than one filter for one field. In the case of range filter, there are already two values used for one filter and therefore original fieldId is suffixed to distinguish the two values - low and high. However for more than two range filter for one field, custom value ids must be used as well.
author:
   Rein Raudjärv
See Also:   ListWidget
See Also:   FormWidget
See Also:   ListFilter


Inner Class :public class SqlFunction


Constructor Summary
public  FilterHelper(ListWidget list)
     Constructs a FilterHelper .

Method Summary
public  FilterHelper_eq(String fieldId)
    
public  FilterHelper_eq(String fieldId, String valueId)
    
public  FilterHelper_fieldRangeInValueRange(String lowFieldId, String highFieldId)
    
public  FilterHelper_fieldRangeInValueRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)
    
public  FilterHelper_gt(String fieldId)
    
public  FilterHelper_gt(String fieldId, String valueId)
    
public  FilterHelper_isNull(String fieldId, Object conditionValue)
    
public  FilterHelper_isNull(String fieldId, String valueId, Object conditionValue)
    
public  FilterHelper_like(String fieldId)
    
public  FilterHelper_like(String fieldId, String valueId)
    
public  FilterHelper_lt(String fieldId)
    
public  FilterHelper_lt(String fieldId, String valueId)
    
public  FilterHelper_notNull(String fieldId, Object conditionValue)
    
public  FilterHelper_notNull(String fieldId, String valueId, Object conditionValue)
    
public  FilterHelper_overlapRange(String lowFieldId, String highFieldId)
    
public  FilterHelper_overlapRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)
    
public  FilterHelper_range(String fieldId)
    
public  FilterHelper_range(String fieldId, String lowValueId, String highValueId)
    
public  FilterHelper_valueRangeInFieldRange(String lowFieldId, String highFieldId)
    
public  FilterHelper_valueRangeInFieldRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)
    
public  FilterHelperaddCustomLabel(String fieldId, String labelId)
     Adds custom label for specified field.
public  FilterHelperaddFieldType(String fieldId, Class type)
     Defines type for specified field.
public  FilterHelpereq(String fieldId)
    
public  FilterHelpereq(String fieldId, String valueId)
    
public  FilterHelpereq(String fieldId, Control control)
    
public  FilterHelpereq(String fieldId, String valueId, Control control)
    
public  FilterHelpereq(String fieldId, FormElement element)
    
public  FilterHelpereq(String fieldId, String valueId, FormElement element)
    
public  FilterHelpereqConst(String fieldId, Object value)
    
public  FilterHelpereqConst(String fieldId, String valueId, Object value)
    
public  FilterHelperfieldRangeInValueRange(String lowFieldId, String highFieldId)
    
public  FilterHelperfieldRangeInValueRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)
    
public  FilterHelperfieldRangeInValueRange(String lowFieldId, String highFieldId, Control lowControl, Control highControl)
    
public  FilterHelperfieldRangeInValueRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, Control lowControl, Control highControl)
    
public  FilterHelperfieldRangeInValueRange(String lowFieldId, String highFieldId, FormElement lowElement, FormElement highElement)
    
public  FilterHelperfieldRangeInValueRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, FormElement lowElement, FormElement highElement)
    
public  FilterHelpergt(String fieldId)
    
public  FilterHelpergt(String fieldId, String valueId)
    
public  FilterHelpergt(String fieldId, Control control)
    
public  FilterHelpergt(String fieldId, String valueId, Control control)
    
public  FilterHelpergt(String fieldId, FormElement element)
    
public  FilterHelpergt(String fieldId, String valueId, FormElement element)
    
public  FilterHelpergtConst(String fieldId, Object value)
    
public  FilterHelpergtConst(String fieldId, String valueId, Object value)
    
public  FilterHelperisNull(String fieldId, Object conditionValue)
    
public  FilterHelperisNull(String fieldId, String valueId, Object conditionValueId)
    
public  FilterHelperisNull(String fieldId, Object conditionValue, Control control)
    
public  FilterHelperisNull(String fieldId, String valueId, Object conditionValue, Control control)
    
public  FilterHelperisNull(String fieldId, Object conditionValue, FormElement element)
    
public  FilterHelperisNull(String fieldId, String valueId, Object conditionValue, FormElement element)
    
public  FilterHelperisNullConst(String fieldId)
    
public  FilterHelperlike(String fieldId)
    
public  FilterHelperlike(String fieldId, String valueId)
    
public  FilterHelperlike(String fieldId, Control control)
    
public  FilterHelperlike(String fieldId, String valueId, Control control)
    
public  FilterHelperlike(String fieldId, FormElement element)
    
public  FilterHelperlike(String fieldId, String valueId, FormElement element)
    
public  FilterHelperlikeConst(String fieldId, Object value)
    
public  FilterHelperlikeConst(String fieldId, String valueId, Object value)
    
public  FilterHelperlt(String fieldId)
    
public  FilterHelperlt(String fieldId, String valueId)
    
public  FilterHelperlt(String fieldId, Control control)
    
public  FilterHelperlt(String fieldId, String valueId, Control control)
    
public  FilterHelperlt(String fieldId, FormElement element)
    
public  FilterHelperlt(String fieldId, String valueId, FormElement element)
    
public  FilterHelperltConst(String fieldId, Object value)
    
public  FilterHelperltConst(String fieldId, String valueId, Object value)
    
public  FilterHelpernotNull(String fieldId, Object conditionValue)
    
public  FilterHelpernotNull(String fieldId, String valueId, Object conditionValueId)
    
public  FilterHelpernotNull(String fieldId, Object conditionValue, Control control)
    
public  FilterHelpernotNull(String fieldId, String valueId, Object conditionValue, Control control)
    
public  FilterHelpernotNull(String fieldId, Object conditionValue, FormElement element)
    
public  FilterHelpernotNull(String fieldId, String valueId, Object conditionValue, FormElement element)
    
public  FilterHelpernotNullConst(String fieldId)
    
public  FilterHelperoverlapRange(String lowFieldId, String highFieldId)
    
public  FilterHelperoverlapRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)
    
public  FilterHelperoverlapRange(String lowFieldId, String highFieldId, Control lowControl, Control highControl)
    
public  FilterHelperoverlapRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, Control lowControl, Control highControl)
    
public  FilterHelperoverlapRange(String lowFieldId, String highFieldId, FormElement lowElement, FormElement highElement)
    
public  FilterHelperoverlapRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, FormElement lowElement, FormElement highElement)
    
public  FilterHelperrange(String fieldId)
    
public  FilterHelperrange(String fieldId, String lowValueId, String highValueId)
    
public  FilterHelperrange(String fieldId, Control lowControl, Control highControl)
    
public  FilterHelperrange(String fieldId, String lowValueId, String highValueId, Control lowControl, Control highControl)
    
public  FilterHelperrange(String fieldId, FormElement lowElement, FormElement highElement)
    
public  FilterHelperrange(String fieldId, String lowValueId, String highValueId, FormElement lowElement, FormElement highElement)
    
public  FilterHelpersetIgnoreCase(boolean ignoreCase)
     Sets the current case sensitivity behaivor.
public  FilterHelpersetStrict(boolean strict)
     Sets the current strickness behaivor.
public  SqlFunctionsqlFunction(String name)
    
public  FilterHelpervalueRangeInFieldRange(String lowFieldId, String highFieldId)
    
public  FilterHelpervalueRangeInFieldRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)
    
public  FilterHelpervalueRangeInFieldRange(String lowFieldId, String highFieldId, Control lowControl, Control highControl)
    
public  FilterHelpervalueRangeInFieldRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, Control lowControl, Control highControl)
    
public  FilterHelpervalueRangeInFieldRange(String lowFieldId, String highFieldId, FormElement lowElement, FormElement highElement)
    
public  FilterHelpervalueRangeInFieldRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, FormElement lowElement, FormElement highElement)
    


Constructor Detail
FilterHelper
public FilterHelper(ListWidget list)(Code)
Constructs a FilterHelper .
Parameters:
  list - list widget.




Method Detail
_eq
public FilterHelper _eq(String fieldId)(Code)



_eq
public FilterHelper _eq(String fieldId, String valueId)(Code)



_fieldRangeInValueRange
public FilterHelper _fieldRangeInValueRange(String lowFieldId, String highFieldId)(Code)



_fieldRangeInValueRange
public FilterHelper _fieldRangeInValueRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)(Code)



_gt
public FilterHelper _gt(String fieldId)(Code)



_gt
public FilterHelper _gt(String fieldId, String valueId)(Code)



_isNull
public FilterHelper _isNull(String fieldId, Object conditionValue)(Code)



_isNull
public FilterHelper _isNull(String fieldId, String valueId, Object conditionValue)(Code)



_like
public FilterHelper _like(String fieldId)(Code)



_like
public FilterHelper _like(String fieldId, String valueId)(Code)



_lt
public FilterHelper _lt(String fieldId)(Code)



_lt
public FilterHelper _lt(String fieldId, String valueId)(Code)



_notNull
public FilterHelper _notNull(String fieldId, Object conditionValue)(Code)



_notNull
public FilterHelper _notNull(String fieldId, String valueId, Object conditionValue)(Code)



_overlapRange
public FilterHelper _overlapRange(String lowFieldId, String highFieldId)(Code)



_overlapRange
public FilterHelper _overlapRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)(Code)



_range
public FilterHelper _range(String fieldId)(Code)



_range
public FilterHelper _range(String fieldId, String lowValueId, String highValueId)(Code)



_valueRangeInFieldRange
public FilterHelper _valueRangeInFieldRange(String lowFieldId, String highFieldId)(Code)



_valueRangeInFieldRange
public FilterHelper _valueRangeInFieldRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)(Code)



addCustomLabel
public FilterHelper addCustomLabel(String fieldId, String labelId)(Code)
Adds custom label for specified field. This can override already defined label of list field. Those labels are used by new filter form elements that are automatically created for list filters.
Parameters:
  fieldId - field id.
Parameters:
  labelId - label id (not yet resolved).



addFieldType
public FilterHelper addFieldType(String fieldId, Class type)(Code)
Defines type for specified field.
Parameters:
  fieldId - field id.
Parameters:
  type - field type.
See Also:   TypeHelper.addFieldType(StringClass)



eq
public FilterHelper eq(String fieldId)(Code)



eq
public FilterHelper eq(String fieldId, String valueId)(Code)



eq
public FilterHelper eq(String fieldId, Control control)(Code)



eq
public FilterHelper eq(String fieldId, String valueId, Control control)(Code)



eq
public FilterHelper eq(String fieldId, FormElement element)(Code)



eq
public FilterHelper eq(String fieldId, String valueId, FormElement element)(Code)



eqConst
public FilterHelper eqConst(String fieldId, Object value)(Code)



eqConst
public FilterHelper eqConst(String fieldId, String valueId, Object value)(Code)



fieldRangeInValueRange
public FilterHelper fieldRangeInValueRange(String lowFieldId, String highFieldId)(Code)



fieldRangeInValueRange
public FilterHelper fieldRangeInValueRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)(Code)



fieldRangeInValueRange
public FilterHelper fieldRangeInValueRange(String lowFieldId, String highFieldId, Control lowControl, Control highControl)(Code)



fieldRangeInValueRange
public FilterHelper fieldRangeInValueRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, Control lowControl, Control highControl)(Code)



fieldRangeInValueRange
public FilterHelper fieldRangeInValueRange(String lowFieldId, String highFieldId, FormElement lowElement, FormElement highElement)(Code)



fieldRangeInValueRange
public FilterHelper fieldRangeInValueRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, FormElement lowElement, FormElement highElement)(Code)



gt
public FilterHelper gt(String fieldId)(Code)



gt
public FilterHelper gt(String fieldId, String valueId)(Code)



gt
public FilterHelper gt(String fieldId, Control control)(Code)



gt
public FilterHelper gt(String fieldId, String valueId, Control control)(Code)



gt
public FilterHelper gt(String fieldId, FormElement element)(Code)



gt
public FilterHelper gt(String fieldId, String valueId, FormElement element)(Code)



gtConst
public FilterHelper gtConst(String fieldId, Object value)(Code)



gtConst
public FilterHelper gtConst(String fieldId, String valueId, Object value)(Code)



isNull
public FilterHelper isNull(String fieldId, Object conditionValue)(Code)



isNull
public FilterHelper isNull(String fieldId, String valueId, Object conditionValueId)(Code)



isNull
public FilterHelper isNull(String fieldId, Object conditionValue, Control control)(Code)



isNull
public FilterHelper isNull(String fieldId, String valueId, Object conditionValue, Control control)(Code)



isNull
public FilterHelper isNull(String fieldId, Object conditionValue, FormElement element)(Code)



isNull
public FilterHelper isNull(String fieldId, String valueId, Object conditionValue, FormElement element)(Code)



isNullConst
public FilterHelper isNullConst(String fieldId)(Code)



like
public FilterHelper like(String fieldId)(Code)



like
public FilterHelper like(String fieldId, String valueId)(Code)



like
public FilterHelper like(String fieldId, Control control)(Code)



like
public FilterHelper like(String fieldId, String valueId, Control control)(Code)



like
public FilterHelper like(String fieldId, FormElement element)(Code)



like
public FilterHelper like(String fieldId, String valueId, FormElement element)(Code)



likeConst
public FilterHelper likeConst(String fieldId, Object value)(Code)



likeConst
public FilterHelper likeConst(String fieldId, String valueId, Object value)(Code)



lt
public FilterHelper lt(String fieldId)(Code)



lt
public FilterHelper lt(String fieldId, String valueId)(Code)



lt
public FilterHelper lt(String fieldId, Control control)(Code)



lt
public FilterHelper lt(String fieldId, String valueId, Control control)(Code)



lt
public FilterHelper lt(String fieldId, FormElement element)(Code)



lt
public FilterHelper lt(String fieldId, String valueId, FormElement element)(Code)



ltConst
public FilterHelper ltConst(String fieldId, Object value)(Code)



ltConst
public FilterHelper ltConst(String fieldId, String valueId, Object value)(Code)



notNull
public FilterHelper notNull(String fieldId, Object conditionValue)(Code)



notNull
public FilterHelper notNull(String fieldId, String valueId, Object conditionValueId)(Code)



notNull
public FilterHelper notNull(String fieldId, Object conditionValue, Control control)(Code)



notNull
public FilterHelper notNull(String fieldId, String valueId, Object conditionValue, Control control)(Code)



notNull
public FilterHelper notNull(String fieldId, Object conditionValue, FormElement element)(Code)



notNull
public FilterHelper notNull(String fieldId, String valueId, Object conditionValue, FormElement element)(Code)



notNullConst
public FilterHelper notNullConst(String fieldId)(Code)



overlapRange
public FilterHelper overlapRange(String lowFieldId, String highFieldId)(Code)



overlapRange
public FilterHelper overlapRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)(Code)



overlapRange
public FilterHelper overlapRange(String lowFieldId, String highFieldId, Control lowControl, Control highControl)(Code)



overlapRange
public FilterHelper overlapRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, Control lowControl, Control highControl)(Code)



overlapRange
public FilterHelper overlapRange(String lowFieldId, String highFieldId, FormElement lowElement, FormElement highElement)(Code)



overlapRange
public FilterHelper overlapRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, FormElement lowElement, FormElement highElement)(Code)



range
public FilterHelper range(String fieldId)(Code)



range
public FilterHelper range(String fieldId, String lowValueId, String highValueId)(Code)



range
public FilterHelper range(String fieldId, Control lowControl, Control highControl)(Code)



range
public FilterHelper range(String fieldId, String lowValueId, String highValueId, Control lowControl, Control highControl)(Code)



range
public FilterHelper range(String fieldId, FormElement lowElement, FormElement highElement)(Code)



range
public FilterHelper range(String fieldId, String lowValueId, String highValueId, FormElement lowElement, FormElement highElement)(Code)



setIgnoreCase
public FilterHelper setIgnoreCase(boolean ignoreCase)(Code)
Sets the current case sensitivity behaivor.
Parameters:
  ignoreCase - whether to ignore case.



setStrict
public FilterHelper setStrict(boolean strict)(Code)
Sets the current strickness behaivor.
Parameters:
  strict - whether new filters should be strict.



sqlFunction
public SqlFunction sqlFunction(String name)(Code)



valueRangeInFieldRange
public FilterHelper valueRangeInFieldRange(String lowFieldId, String highFieldId)(Code)



valueRangeInFieldRange
public FilterHelper valueRangeInFieldRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId)(Code)



valueRangeInFieldRange
public FilterHelper valueRangeInFieldRange(String lowFieldId, String highFieldId, Control lowControl, Control highControl)(Code)



valueRangeInFieldRange
public FilterHelper valueRangeInFieldRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, Control lowControl, Control highControl)(Code)



valueRangeInFieldRange
public FilterHelper valueRangeInFieldRange(String lowFieldId, String highFieldId, FormElement lowElement, FormElement highElement)(Code)



valueRangeInFieldRange
public FilterHelper valueRangeInFieldRange(String lowFieldId, String highFieldId, String lowValueId, String highValueId, FormElement lowElement, FormElement highElement)(Code)



Fields inherited from org.araneaframework.uilib.list.structure.filter.BaseFilterHelper
final public static String HIGH_SUFFIX(Code)(Java Doc)
final public static String LOW_SUFFIX(Code)(Java Doc)
final protected ListWidget list(Code)(Java Doc)

Methods inherited from org.araneaframework.uilib.list.structure.filter.BaseFilterHelper
protected void _addCustomLabel(String fieldId, String labelId)(Code)(Java Doc)
protected void _addFieldType(String fieldId, Class type)(Code)(Java Doc)
protected void _setIgnoreCase(boolean ignoreCase)(Code)(Java Doc)
protected void _setStrict(boolean strict)(Code)(Java Doc)
public void addCustomComparator(String fieldId, Comparator comp)(Code)(Java Doc)
public void addInitEvent(Event event)(Code)(Java Doc)
public boolean checkChanged()(Code)(Java Doc)
public void destroy() throws Exception(Code)(Java Doc)
protected void fireChange()(Code)(Java Doc)
public ConfigurationContext getConfiguration()(Code)(Java Doc)
public Comparator getFieldComparator(String fieldId)(Code)(Java Doc)
public String getFieldId(String valueId)(Code)(Java Doc)
public String getFieldIdFromHighValueId(String highValueId)(Code)(Java Doc)
public String getFieldIdFromLowValueId(String lowValueId)(Code)(Java Doc)
public String getFieldLabel(String fieldId)(Code)(Java Doc)
public Class getFieldType(String fieldId)(Code)(Java Doc)
public FormWidget getForm()(Code)(Java Doc)
public String getHighValueId(String fieldId)(Code)(Java Doc)
protected LocalizationContext getL10nCtx()(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public String getLowValueId(String fieldId)(Code)(Java Doc)
protected TypeHelper getTypeHelper()(Code)(Java Doc)
public String getValueId(String fieldId)(Code)(Java Doc)
public void init(Environment env) throws Exception(Code)(Java Doc)
public boolean isIgnoreCase()(Code)(Java Doc)
public boolean isStrict()(Code)(Java Doc)

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.