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

Jochen Kemnade commented on TAP5-2532:
--------------------------------------

Thanks!

> Add Object editor to PropertyEditBlocks
> ---------------------------------------
>
>                 Key: TAP5-2532
>                 URL: https://issues.apache.org/jira/browse/TAP5-2532
>             Project: Tapestry 5
>          Issue Type: Improvement
>          Components: tapestry-core
>    Affects Versions: 5.4
>            Reporter: Barry Books
>            Priority: Minor
>              Labels: features, patch
>             Fix For: 5.5.0
>
>         Attachments: 0001-TAP-2532-Add-property-editor-for-object.patch
>
>
> Create an object edit block in PropertyEditBlocks so BeanEditor can edit an 
> Object like
> class Person {
> Name name;
> Address address;
> ...
> }
> by just contributing the following
> public static void 
> contributeDefaultDataTypeAnalyzer(@SuppressWarnings("rawtypes") 
> MappedConfiguration<Class, String> configuration) {
>                   configuration.add(Name.class, "name");
>                   configuration.add(Address.class, "address");
>         }
>  @Contribute(BeanBlockSource.class)
>  public static void 
> provideDefaultBeanBlocks(Configuration<BeanBlockContribution> configuration) {
>         configuration.add( new EditBlockContribution("Name", 
> "PropertyEditBlocks", "Object"));
>         configuration.add( new EditBlockContribution("Address", 
> "PropertyEditBlocks", "Object"));
>     }
> Patch to follow



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to