Thread: what is <....>
View Single Post
  #3 (permalink)  
Old 07-06-2008, 01:19 AM
Jeremy Jeremy is offline
Member
 
Join Date: Jul 2008
Posts: 26
Jeremy is on a distinguished road
Those brackets signify parametrized type definitions. If you want an ArrayList of Strings then you would define it as such:

Code:
ArrayList<String> list = new ArrayList<String>();
The code example you have is a map of key-value pairs where the keys are Strings and the values are JMSSenderTest.
Reply With Quote