Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.lib / src / main / java / org / gvsig / tools / util / GetItemByKeyWithSizeGetKeysContainsKeyAndSetItem.java @ 2488

History | View | Annotate | Download (613 Bytes)

1
package org.gvsig.tools.util;
2

    
3
import java.util.Map;
4

    
5
/**
6
 *
7
 * @author gvSIG Team
8
 * @param <K>
9
 * @param <V>
10
 */
11
public interface GetItemByKeyWithSizeGetKeysContainsKeyAndSetItem<K, V> extends 
12
        GetItemByKeyWithSizeGetKeysAndContainsKey<K, V>, SetItem<K,V> {
13
    
14
    public static GetItemByKeyWithSizeGetKeysContainsKeyAndSetItem create() {
15
        return new GetItemByKeyWithSizeGetKeysContainsKeyAndSetItemImpl();
16
    }
17
    
18
    public static GetItemByKeyWithSizeGetKeysContainsKeyAndSetItem create(Map map) {
19
        return new GetItemByKeyWithSizeGetKeysContainsKeyAndSetItemImpl(map);
20
    }
21
    
22
}