DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27231>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27231 [collections] Change to HashEntry inner class of AbstractHashedMap ------- Additional Comments From [EMAIL PROTECTED] 2004-02-28 19:23 ------- Oops. I think I forgot this interface. The problem with the Set interface is that there is no way to get the object that is in the set. This interface ads that method. package org.apache.commons.collections.set; /** * This method should really be part of the set interface. * Date: Feb 13, 2004 * Time: 8:53:46 AM * author: hjs */ public interface Sets { /** * Returns the Object contained in the Set that equals o * @param o the hook to catch the fish * @return the fish */ Object doesContain(Object o); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
