RE: Reusing methods across actions classes

2004-09-30 Thread fzlists
ment > LowerMyBills.com > [EMAIL PROTECTED] > 2401 Colorado Ave., 2nd Floor > Santa Monica, CA 90404 > (310) 998-6412 > > > > > -Original Message- > From: Ciaran Hanley [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 30, 2004 3:16 AM > To: St

Re: Reusing methods across actions classes

2004-09-30 Thread Sean Schofield
PROTECTED] 2401 Colorado Ave., 2nd Floor Santa Monica, CA 90404 (310) 998-6412 -Original Message- From: Ciaran Hanley [mailto:[EMAIL PROTECTED] Sent: Thursday, September 30, 2004 3:16 AM To: Struts User Mailing List Subject: Reusing methods across actions classes Hey, Bit of a dumm

RE: Reusing methods across actions classes

2004-09-30 Thread Danilo Gurovich
Sent: Thursday, September 30, 2004 3:16 AM To: Struts User Mailing List Subject: Reusing methods across actions classes Hey, Bit of a dummy question here but I am wondering what is the best way to reuse methods across different action classes. Is it acceptable to make an instance of an action class w

RE: Reusing methods across actions classes

2004-09-30 Thread Robert Taylor
Thursday, September 30, 2004 6:25 AM > To: 'Struts Users Mailing List'; [EMAIL PROTECTED] > Subject: RE: Reusing methods across actions classes > > > My actions already extend Action. Should I write a superclass that extends > Action, and then extend this class, i

RE: Reusing methods across actions classes

2004-09-30 Thread Prasenjit Narwade
[mailto:[EMAIL PROTECTED] Sent: Thursday, September 30, 2004 3:46 PM To: Struts User Mailing List Subject: Reusing methods across actions classes Hey, Bit of a dummy question here but I am wondering what is the best way to reuse methods across different action classes. Is it acceptable to make an

RE: Reusing methods across actions classes

2004-09-30 Thread Mark Benussi
ts Users Mailing List'" <[EMAIL PROTECTED]>,<[EMAIL PROTECTED]> Subject: RE: Reusing methods across actions classes Date: Thu, 30 Sep 2004 11:25:25 +0100 My actions already extend Action. Should I write a superclass that extends Action, and then extend this class, is that correc

RE: Reusing methods across actions classes

2004-09-30 Thread Ciaran Hanley
: Reusing methods across actions classes I would say that if you have common functionality such as a method that all objects [Actions] share then place the common method in a super class [Action] that the other classes can extend. Original Message Follows From: "Ciaran Hanley&quo

RE: Reusing methods across actions classes

2004-09-30 Thread Mark Benussi
o: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts User Mailing List" <[EMAIL PROTECTED]> Subject: Reusing methods across actions classes Date: Thu, 30 Sep 2004 11:16:20 +0100 Hey, Bit of a dummy question here but I am wondering what is the best way to reus

Reusing methods across actions classes

2004-09-30 Thread Ciaran Hanley
Hey, Bit of a dummy question here but I am wondering what is the best way to reuse methods across different action classes. Is it acceptable to make an instance of an action class within an action class so I can use one of its methods. Or would it be better to simply copy and paste the method i