Re: Very OT: Java Reflection?

2003-01-30 Thread Vic Cekvenich
cls != null) { method = cls.getMethod(methodName, args); cls = cls.getSuperClass(); } Please post the answer if you find a good one. -Max - Original Message - From: V. Cekvenich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 4:12 AM Subject: Very OT: Java

Re: Very OT: Java Reflection?

2003-01-30 Thread Vic Cekvenich
cls = cls.getSuperClass(); } Please post the answer if you find a good one. -Max - Original Message - From: V. Cekvenich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 4:12 AM Subject: Very OT: Java Reflection? Someone care to help me out on OT reflection?

Re: Very OT: Java Reflection?

2003-01-30 Thread Craig R. McClanahan
On Wed, 29 Jan 2003, V. Cekvenich wrote: Date: Wed, 29 Jan 2003 07:12:47 -0500 From: V. Cekvenich [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Very OT: Java Reflection? Someone care to help me out on OT reflection? Here

Very OT: Java Reflection?

2003-01-29 Thread V. Cekvenich
Someone care to help me out on OT reflection? Here is the situation: My base class has a reflection (in execute) that does this : Method eventMethod = this.getClass().getMethod(methodName, args); and same class has onDefaultExec() {} (or full code here:

Re: Very OT: Java Reflection?

2003-01-29 Thread V. Cekvenich
Never mind, the base method had error, works as per Java. V. Cekvenich wrote: Someone care to help me out on OT reflection? Here is the situation: My base class has a reflection (in execute) that does this : Method eventMethod = this.getClass().getMethod(methodName, args); and same class has

Re: Very OT: Java Reflection?

2003-01-29 Thread Max Cooper
post the answer if you find a good one. -Max - Original Message - From: V. Cekvenich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 4:12 AM Subject: Very OT: Java Reflection? Someone care to help me out on OT reflection? Here is the situation: My base class