The common idiom of connecting a component's id to a container property should
be easier: an attribute of the @Parameter annotation
-----------------------------------------------------------------------------------------------------------------------------------
Key: TAPESTRY-2137
URL: https://issues.apache.org/jira/browse/TAPESTRY-2137
Project: Tapestry
Issue Type: Improvement
Components: tapestry-core
Reporter: Howard M. Lewis Ship
Priority: Trivial
Fix For: 5.0 Next Release
Perhaps "autoconnect" to indicate that this parameter should default to the
corresponding property of its container.
@Parameter(required=true, autoconnect=true)
private String _value;
would save from having to write:
@Inject
private ComponentDefaultProvider _defaultProvider;
Object defaultValue()
{
return _defaultProvider.defaultBinding("value", _resources);
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]