Re: Custom annotations lost on abstract methods on a page class

2006-08-26 Thread Robert Binna
he way we implement it to figure how to identify a Tapestry enhanced base page. !page.getSimpleName().startsWith("$") Is there are better way? Thanks. -- Forwarded message -- From: Robert Binna <[EMAIL PROTECTED]> Date: Aug 26, 2006 2:42 AM Subject: Re: Custom anno

Re: Custom annotations lost on abstract methods on a page class

2006-08-25 Thread Karthik N
-- Forwarded message -- From: Robert Binna <[EMAIL PROTECTED]> Date: Aug 26, 2006 2:42 AM Subject: Re: Custom annotations lost on abstract methods on a page class To: Tapestry users Hi I know this problem. I think it has to do with the Javassist enhancement. A solution to get the inform

Re: Custom annotations lost on abstract methods on a page class

2006-08-25 Thread Robert Binna
Hi I know this problem. I think it has to do with the Javassist enhancement. A solution to get the information of the annotation at runtime is to walk up the class hierarchy and ask each superclass for the declared methods that correspond the abstract method and get its annotations. As far as