You could add a method to BasePeer or some other util class to give you a new list and keep the access modifier as it was.
john mcnally On Wed, 2003-03-26 at 12:28, [EMAIL PROTECTED] wrote: > mpoeschl 2003/03/26 12:28:41 > > Modified: src/java/org/apache/torque/util UniqueList.java > Log: > has to be public as it is used by the generated peer classes > > Revision Changes Path > 1.2 +2 -2 db-torque/src/java/org/apache/torque/util/UniqueList.java > > Index: UniqueList.java > =================================================================== > RCS file: /home/cvs/db-torque/src/java/org/apache/torque/util/UniqueList.java,v > retrieving revision 1.1 > retrieving revision 1.2 > diff -u -r1.1 -r1.2 > --- UniqueList.java 24 Mar 2003 21:53:42 -0000 1.1 > +++ UniqueList.java 26 Mar 2003 20:28:41 -0000 1.2 > @@ -62,7 +62,7 @@ > * @author <a href="mailto:[EMAIL PROTECTED]">Martin Poeschl</a> > * @version $Id$ > */ > -class UniqueList extends ArrayList > +public class UniqueList extends ArrayList > { > /** > * Adds an Object to the list. > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
