There is Address Cards view when we click on Contacts in Microsoft Outlook. I want to use this same feature in my application. I am using swing. But didnt get whether the view is a bunch of JTables created at run time or some cells of JTable are highlighted that way? Need your suggestions to create view like this.
I have attached an example image available on the net.

The core Swing component that comes closest is
JList, I think, withsetLayoutOrientation(JList.VERTICAL_WRAP)and a custom renderer.