I'm currently learning Tapestry and get stuck in the BeanEditForm tutorial, in this part of code:
public class AppPropertyEditBlocks
{
@Property
@Environmental
private PropertyEditContext context;
@Component(parameters =
{ "value=context.propertyValue", "label=prop:context.label",
"translate=prop:currencyTranslator", "validate=prop:currencyValidator",
"clientId=prop:context.propertyId", "annotationProvider=context" })
private TextField currency;
@Inject
private ComponentResources resources;
public FieldValidator getCurrencyValidator()
{
return context.getValidator(currency);
}
public FieldTranslator getCurrencyTranslator()
{
return context.getTranslator(current);
}
}
I do not understand where the current is coming from this part:
public FieldTranslator getCurrencyTranslator()
{
return context.getTranslator(current);
}
Is it just an error from the documentation, or is it some variable that I must import? TO be honest, for now I still don't get what should I put in the getCurrencyTranslator. I've tried to search Google, and somehow everybody just copy this tutorial. Can someone elaborate what's the current there mean?
Thanks before.
EDIT (ELABORATION AND ADDITION)
Here is the log file's content when the exception happens:
org.apache.tapestry5.ioc.internal.util.TapestryException: Parameter 'translate' of component AppPropertyEditBlocks:currency is bound to null. This parameter is not allowed to be null. [at classpath:com/alpro/assetmanagement/tapestry/pages/AppPropertyEditBlocks.tml, line 4]
And I've also search a bit more and find this relevant topic on another site. In short, it suggest:
context.getTranslator will look up the "default" translator for the field, based on the bound type. Ultimately, the FieldTranslatorSource service derives its translators from the TranslatorSource service; tapestry does not provide out-of-the-box support for Date or Time translators. If your application will use the same format anywhere that you're using a Timestamp, then you should be able to just contribute a translator to the TranslatorSource service for Timestamp. If not, then you'll need to return a custom FieldTranslator implementation from getDurationTranslator, rather than relying on context.getTranslator.
While I still not understand half of what the poster said, I'll try to find a way. Thanks before.