I have a composite component with an interface that contains this:
what about the attribute "default" ? It seam that it is not implemented when using the backing component implementation.
xhtml :
TEST : #{cc.attrs.test}
Java backing implementation :
testValue = (Boolean) getAttributes().get("test");
if the test attribute is set in the main xhtml no problem : both xhtml and java backing have the same value. But when not set the default value is only on xhtml : The html contains
TEST : false
But testValue is null in backing