blob: d22a3176c5329b7e97b6f8e0beae4d5935a373f1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package java.util;
public class HashMap<K,V> implements Map<K,V> {
public HashMap(int i) {
}
public V get(K k) {
return null;
}
public boolean containsKey(K k) {
return false;
}
public void put(K k, V v) {
}
public int size() {
return 0;
}
public Set<K> keySet() {
return null;
}
public Collection<V> values() {
return null;
}
}