[JBoss-dev] [EJB on JBoss] - CMP generated classes

2004-07-20 Thread alex_brasil
Hi all, I've been trying to identify where the concrete CMP classes are generated when a CMP 2.x Entity Bean is deployed on JBoss, but I'm currently lost with all the persistence/deploy classes. Can anyone tell me wich class on JBoss project is responsible for generating those concrete

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Interception of Superclass and Interfaces

2004-03-12 Thread alex_brasil
Hi, Is there any way of intercepting the methods of an interface implementation or to intercept a subclass of some declared superclass? For example: I have two classes, A and B, and B extends A. Is there any way of intercepting calls to an instance of B by declaring an interceptor to class A

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Interception of Superclass and Interfaces

2004-03-12 Thread alex_brasil
First of all, thanks for the fast answer. Bill Burke wrote : | In DR2 you can do the following | | class A | { |public void method1() {..} | } | | class B extends A {} | | method1 will be intercepted if you declare a methoind-pointcut on A.method1. | That I already