Hope the code snippet below might be of some help....
HashMap<String,ArrayList><String>> hm = new HashMap<String,ArrayList><String>> ();
ArrayList<String> al = new ArrayList<String>();
al.add("java");
al.add("solaris");
al.add("sun");
al.add("SDN");
hm.put("ArrayList",al);
REGARDS,
RaHuL