{
// Display search results
for (FolderSearchResult fsr : lstSR)
{
FolderDescription fd = null;
CardDescription cd = null;
boolean isCard = false;
// Retrieve FolderDescription
AttributedDescription ad = das.find(fsr.getTableName());
if (ad instanceof CardDescription)
{
cd = (CardDescription) ad;
fd = cd.getParent();
isCard = true;
}
else
{
if (ad instanceof FolderDescription)