[EMAIL PROTECTED] writes:
>tfischer 2004/12/13 09:35:28
> Modified: src/java/org/apache/torque/util Tag: TORQUE_3_1_BRANCH
> Criteria.java
> Log:
> Changed getJoins() to public access
> No reason why it should not be public (all the other getters are)
I didn't want to expose the Join objects outside the util package to
the end user. If you open up this method, you lock in the object
signature (which ATM is an Arraylist(3) and should be replaced with a
thinner Join bean) because you expose the contents to the
public. Changing this would later be a nasty surprise to the users.
Do you actually need this or is this a "well, this seems to be a good
idea" patch?
Regards
Henning
>
> Revision Changes Path
> No revision
> No revision
> 1.42.2.6 +2 -2 db-torque/src/java/org/apache/torque/util/Criteria.java
>
> Index: Criteria.java
> ===================================================================
> RCS file: /home/cvs/db-torque/src/java/org/apache/torque/util/Criteria.java,v
> retrieving revision 1.42.2.5
> retrieving revision 1.42.2.6
> diff -u -r1.42.2.5 -r1.42.2.6
> --- Criteria.java 1 Dec 2004 15:03:39 -0000 1.42.2.5
> +++ Criteria.java 13 Dec 2004 17:35:28 -0000 1.42.2.6
> @@ -1346,7 +1346,7 @@
> * @return a List which contains objects of type Join,
> * or null if the criteria dies not contains any joins
> */
> - List getJoins()
> + public List getJoins()
> {
> return joins;
> }
>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
--
Dipl.-Inf. (Univ.) Henning P. Schmiedehausen INTERMETA GmbH
[EMAIL PROTECTED] +49 9131 50 654 0 http://www.intermeta.de/
RedHat Certified Engineer -- Jakarta Turbine Development -- hero for hire
Linux, Java, perl, Solaris -- Consulting, Training, Development
What is more important to you...
[ ] Product Security
or [ ] Quality of Sales and Marketing Support
-- actual question from a Microsoft customer survey
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]