You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Christian Köberl (Commented JIRA)" <ji...@apache.org> on 2012/02/23 19:14:48 UTC

[jira] [Commented] (TAP5-736) TextField validate parameter allows Null, but throws NPE

    [ https://issues.apache.org/jira/browse/TAP5-736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13214899#comment-13214899 ] 

Christian Köberl commented on TAP5-736:
---------------------------------------

Could be  easily solved by setting allowNull to false in AbstractTextField:

@Parameter(defaultPrefix = BindingConstants.VALIDATE, allowNull = false)
@SuppressWarnings("unchecked")
private FieldValidator<Object> validate;
                
> TextField validate parameter allows Null, but throws NPE
> --------------------------------------------------------
>
>                 Key: TAP5-736
>                 URL: https://issues.apache.org/jira/browse/TAP5-736
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.1.0.5
>            Reporter: Lukasz Jazgar
>
> Component TextField has parameter "validate" annotated by
>    @Parameter(defaultPrefix = BindingConstants.VALIDATE)
> There is no attribute allowNull, but it has default value "true" (http://tapestry.apache.org/tapestry5.1/apidocs/org/apache/tapestry5/annotations/Parameter.html#allowNull()). 
> So null value is allowed according to specification.
> But if you set parameter validate to null, NullPointerException is thrown from AbstractTextProperties.begin(MarkupWriter writer), line: 173.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira