Possible Duplicate:
Java Generics - What is this syntax for?
In Java What is the < > notation
sBooksProjectionMap = new HashMap<String, String>();
Could anyone explain to me the meaning of this part of of above code:
new HashMap<String, String>()
I'm a newbie for Java and the <Sting, String>
part is confusing me.