/**
*
*/
package zendo.playground.spring.beans;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
/**
*
*
* @author mocanu
*/
@SuppressWarnings( "unchecked" )
public class SomeMapImpl implements SomeMap {
private String name = "my map";
/**
* {@inheritDoc}
*/
public void clear() {
// TODO Auto-generated method stub
}
/**
* {@inheritDoc}
*/
public boolean containsKey( Object key ) {
// TODO Auto-generated method stub
return false;
}
/**
* {@inheritDoc}
*/
public boolean containsValue( Object value ) {
// TODO Auto-generated method stub
return false;
}
/**
* {@inheritDoc}
*/
public Set entrySet() {
// TODO Auto-generated method stub
return null;
}
/**
* {@inheritDoc}
*/
public Object get( Object key ) {
// TODO Auto-generated method stub
return null;
}
/**
* {@inheritDoc}
*/
public boolean isEmpty() {
// TODO Auto-generated method stub
return false;
}
/**
* {@inheritDoc}
*/
public Set keySet() {
// TODO Auto-generated method stub
return null;
}
/**
* {@inheritDoc}
*/
public Object put( Object key, Object value ) {
// TODO Auto-generated method stub
return null;
}
/**
* {@inheritDoc}
*/
public void putAll( Map t ) {
// TODO Auto-generated method stub
}
/**
* {@inheritDoc}
*/
public Object remove( Object key ) {
// TODO Auto-generated method stub
return null;
}
/**
* {@inheritDoc}
*/
public int size() {
// TODO Auto-generated method stub
return 0;
}
/**
* {@inheritDoc}
*/
public Collection values() {
// TODO Auto-generated method stub
return null;
}
/**
* Returns the name
*
* @return the name
*/
public String getName() {
return name;
}
}