webtier@glassfish.java.net

Re: JSF 2.0 composite components with method-valued attributes

From: <webtier_at_javadesktop.org>
Date: Sun, 15 Mar 2009 16:38:15 PDT

I think the problem is caused by changes in line 199 of jsf-ri/src/com/sun/faces/facelets/tag/TagAttributeImpl.java
                result = new AttributeLookupMethodExpression(getValueExpression(ctx, MethodExpression.class));
getValueExpression()
now uses
ExpressionFactory f = ctx.getExpressionFactory();
            return new TagValueExpression(this, f.createValueExpression(ctx,
                    this.value, type));
probably that should be TagMethodExpression..
or may be it should not be wrapped in TagValueExpression at all...
[Message sent by forum member 'nzinoviev' (nzinoviev)]

http://forums.java.net/jive/thread.jspa?messageID=337082