You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Jochen Kemnade (JIRA)" <ji...@apache.org> on 2017/03/31 07:23:41 UTC

[jira] [Closed] (TAP5-2532) Add Object editor to PropertyEditBlocks

     [ https://issues.apache.org/jira/browse/TAP5-2532?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jochen Kemnade closed TAP5-2532.
--------------------------------
       Resolution: Fixed
    Fix Version/s: 5.5.0

> 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)