Merging from -r468106:814127 of collections_jdk5_branch - namely where this code was generified; mostly in r738956.
Also see the following revisions: ------------------------------------------------------------------------ r740150 | mbenson | 2009-02-02 15:24:00 -0800 (Mon, 02 Feb 2009) | 1 line make all [collections] maps implement IterableMap ------------------------------------------------------------------------ git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@815026 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fd10e94049
commit
ab847308eb
|
@ -16,8 +16,6 @@
|
|||
*/
|
||||
package org.apache.commons.collections;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Defines a map that is bounded in size.
|
||||
* <p>
|
||||
|
@ -30,7 +28,7 @@ import java.util.Map;
|
|||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
public interface BoundedMap extends Map {
|
||||
public interface BoundedMap<K, V> extends IterableMap<K, V> {
|
||||
|
||||
/**
|
||||
* Returns true if this map is full and no new elements can be added.
|
||||
|
|
Loading…
Reference in New Issue