import java.util.*;

/*
 * Created on Jun 8, 2004
 *
 * To change the template for this generated file go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */

/**
 * Este é um comentário padrão (MUDE!).
 * 
 * Projeto Nokia/DEE
 * 
 * @author root
 *
 * To change the template for this generated type comment go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */
public class Mapas {

	public static void main(String[] args) {
		Map mapa = new HashMap();
		
		mapa.put("t1", "teste1");
		mapa.put("t2", "teste2");
		mapa.put("t3", "teste3");
		mapa.put("t4", "teste4");
	
		System.out.println(mapa);
		System.out.println(mapa.get("t4"));
	}
}
