Java Doc for FloatControl.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.StringRequestControl
         org.araneaframework.uilib.form.control.EmptyStringNullableControl
            org.araneaframework.uilib.form.control.FloatControl

FloatControl
public class FloatControl extends EmptyStringNullableControl implements FilteredInputControl(Code)
This class represents a textbox control that accepts only valid floating-point numbers. This class does not support localization. It does not use @link NumberFormat class to parse and format @link BigDecimal objects because @link NumberFormat would convert @link BigDecimal objects into doubles. To customize parsing and formatting one could create a subclass of it and override @link #createBigDecimal(String) and @link #toString(BigDecimal) methods. To use the subclass in JSPs also another JSP Tag must be created to use this implementation and configure validation script.
author:
   Jevgeni Kabanov (ekabanov at araneaframework dot org)
author:
   Rein Raudjärv

Inner Class :public class ViewModel extends StringArrayRequestControl.ViewModel


Constructor Summary
public  FloatControl()
     Empty.
public  FloatControl(BigDecimal minValue, BigDecimal maxValue, Integer maxScale)
     Makes a float control that has minimum, maximum value and maximum scale.
public  FloatControl(BigDecimal minValue, BigDecimal maxValue)
     Makes a float control that has minimum and maximum value.

Method Summary
protected  BigDecimalcreateBigDecimal(String str)
     Converts String into BigDecimal.
protected  ObjectfromRequest(String parameterValue)
     Checks that the submitted data is a valid floating-point number.
public  InputFiltergetInputFilter()
    
public  IntegergetMaxScale()
     Returns the maximum scale.
public  BigDecimalgetMaxValue()
     Returns the maxValue.
public  BigDecimalgetMinValue()
     Returns the minValue.
public  StringgetRawValueType()
     Returns "BigDecimal".
public  ObjectgetViewModel()
     Returns ViewModel .
protected  StringpreprocessRequestParameter(String parameterValue)
     Trims request parameter.
public  voidsetInputFilter(InputFilter inputFilter)
    
public  voidsetMaxScale(Integer maxScale)
     Sets the maximum scale.
public  voidsetMaxValue(BigDecimal maxValue)
     Sets the maximum value.
public  voidsetMinValue(BigDecimal minValue)
     Sets the minimum value.
protected  StringtoResponse(Object controlValue)
    
protected  StringtoString(BigDecimal dec)
     Converts BigDecimal into String.
protected  voidvalidateNotNull()
     Checks that the submitted value is in permitted range.


Constructor Detail
FloatControl
public FloatControl()(Code)
Empty.



FloatControl
public FloatControl(BigDecimal minValue, BigDecimal maxValue, Integer maxScale)(Code)
Makes a float control that has minimum, maximum value and maximum scale.
Parameters:
  minValue - minimum permitted value.
Parameters:
  maxValue - maximum permitted value.
Parameters:
  maxScale - maximum permitted scale.



FloatControl
public FloatControl(BigDecimal minValue, BigDecimal maxValue)(Code)
Makes a float control that has minimum and maximum value.
Parameters:
  minValue - minimum permitted value.
Parameters:
  maxValue - maximum permitted value.




Method Detail
createBigDecimal
protected BigDecimal createBigDecimal(String str) throws NumberFormatException(Code)
Converts String into BigDecimal. This method can be overrided in subclasses.
Parameters:
  str - String object BigDecimal object
throws:
  NumberFormatException - str is not a valid representationof a BigDecimal



fromRequest
protected Object fromRequest(String parameterValue)(Code)
Checks that the submitted data is a valid floating-point number.



getInputFilter
public InputFilter getInputFilter()(Code)

since:
   1.0.11



getMaxScale
public Integer getMaxScale()(Code)
Returns the maximum scale. the maximum scale.



getMaxValue
public BigDecimal getMaxValue()(Code)
Returns the maxValue. the maxValue.



getMinValue
public BigDecimal getMinValue()(Code)
Returns the minValue. the minValue.



getRawValueType
public String getRawValueType()(Code)
Returns "BigDecimal". "BigDecimal".



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



preprocessRequestParameter
protected String preprocessRequestParameter(String parameterValue)(Code)
Trims request parameter.



setInputFilter
public void setInputFilter(InputFilter inputFilter)(Code)

since:
   1.0.11



setMaxScale
public void setMaxScale(Integer maxScale)(Code)
Sets the maximum scale.
Parameters:
  maxScale - maximum scale.



setMaxValue
public void setMaxValue(BigDecimal maxValue)(Code)
Sets the maximum value.
Parameters:
  maxValue - maximum value.



setMinValue
public void setMinValue(BigDecimal minValue)(Code)
Sets the minimum value.
Parameters:
  minValue - minimum value.



toResponse
protected String toResponse(Object controlValue)(Code)



toString
protected String toString(BigDecimal dec)(Code)
Converts BigDecimal into String. This method can be overrided in subclasses.
Parameters:
  dec - BigDecimal object String object



validateNotNull
protected void validateNotNull()(Code)
Checks that the submitted value is in permitted range.



Methods inherited from org.araneaframework.uilib.form.control.EmptyStringNullableControl
public boolean isRead()(Code)(Java Doc)
protected String preprocessRequestParameter(String parameterValue)(Code)(Java Doc)

Methods inherited from org.araneaframework.uilib.form.control.StringRequestControl
abstract protected Object fromRequest(String parameterValue)(Code)(Java Doc)
protected Object fromRequestParameters(String[] parameterValues)(Code)(Java Doc)
abstract protected String preprocessRequestParameter(String parameterValue)(Code)(Java Doc)
protected String[] preprocessRequestParameters(String[] parameterValues)(Code)(Java Doc)
abstract protected String toResponse(Object controlValue)(Code)(Java Doc)
protected String[] toResponseParameters(Object controlValue)(Code)(Java Doc)

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.