You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Josh Canfield (JIRA)" <ji...@apache.org> on 2010/11/22 17:19:14 UTC

[jira] Assigned: (TAP5-191) Tapestry's understanding of generics is limited to getter and setter methods; it does not understand generics as parameters to event handler methods such as onActivate()

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

Josh Canfield reassigned TAP5-191:
----------------------------------

    Assignee: Josh Canfield

> Tapestry's understanding of generics is limited to getter and setter methods; it does not understand generics as parameters to event handler methods such as onActivate()
> -------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TAP5-191
>                 URL: https://issues.apache.org/jira/browse/TAP5-191
>             Project: Tapestry 5
>          Issue Type: Improvement
>    Affects Versions: 5.0.15
>            Reporter: Angelo Chen
>            Assignee: Josh Canfield
>            Priority: Minor
>
> Hi, 
> I'm trying out generic in 5.0.11, I have a base class ObjectEdit, then 
> public class ObjectEdit<T> { 
>     private T object; 
>     public T getObject() { return object;} 
>     public void setObject(T object) { this.object = object;} 
>     public void onActivate(T obj) { object = obj;} 
>     public T onPassivate() { return object; } 
> } 
> I was hoping that I can just extend it like this: 
> public class UserEdit extends ObjectEdit <Usr> { 
> } 
> but it does not work, error: 
> org.apache.tapestry.ioc.internal.util.TapestryException 
> Failure reading parameter 'object' of component admin/UserEdit:object: java.lang.String 
> I have to do: 
> public class UserEdit extends ObjectEdit <User> { 
>      public void onActivate(User obj) { 
>         this.setObject(obj); 
>     } 
> } 
> and remove the onActivate from ObjectEdit, why onActivate does not work in a base class when onPassivate can? Thanks, 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.