RE: Best practices: How to initialize state in EntityBean's superclass

2001-02-19 Thread Jeff Schnitzer
Best practices: How to initialize state in EntityBean's >superclass > > >Suppose you have two EntityBean classes A and B which share some common >functionality and state by inheriting from the same superclass >S. Then, if S >has some member variable, say a java.util.Vect

RE: Best practices: How to initialize state in EntityBean's superclass

2001-02-19 Thread Conrad Chan
-Interest Subject: Best practices: How to initialize state in EntityBean's superclass Suppose you have two EntityBean classes A and B which share some common functionality and state by inheriting from the same superclass S. Then, if S has some member variable, say a java.util.Vector called "fo

Best practices: How to initialize state in EntityBean's superclass

2001-02-19 Thread Randahl Fink Isaksen
Suppose you have two EntityBean classes A and B which share some common functionality and state by inheriting from the same superclass S. Then, if S has some member variable, say a java.util.Vector called "foos", which is part of the persistent state of both A and B, my question is this: When shou