RE: abstract class

2002-12-05 Thread Mohan Radhakrishnan
. Thanks, Mohan -Original Message- From: Brian Hickey [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 5:56 PM To: Struts Users Mailing List Subject: Re: abstract class Mohan, Two different behaviors is what you wish then you need to derive from a concrete base class

Re: abstract class

2002-12-05 Thread V. Cekvenich
Users Mailing List Subject: Re: abstract class Mohan, Two different behaviors is what you wish then you need to derive from a concrete base class. Abstract classes are more likely to provide conformance to an architecture or signature template. In Struts, folks usually inherit from the Action

Re: abstract class

2002-12-04 Thread Brian Hickey
Mohan, Two different behaviors is what you wish then you need to derive from a concrete base class. Abstract classes are more likely to provide conformance to an architecture or signature template. In Struts, folks usually inherit from the Action class to create certain behaviors. If you need to

RE: abstract class

2002-12-04 Thread Andrew Hill
in a constructor - in that case it must be the first statement, but for normal methods it can be called anytime. -Original Message- From: Brian Hickey [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 20:26 To: Struts Users Mailing List Subject: Re: abstract class Mohan, Two

Re: abstract class

2002-12-04 Thread Brian Hickey
: Wednesday, December 04, 2002 7:44 AM Subject: RE: abstract class snip So your sub class (a derivation of your base class) needs to call into its super class, it is done with a super() call. The super() call is (and must be) the first statement in the subclass's overriding method. /snip Thats