{
_detailPanel.tblDetails.show(new EmptyDataSet());
}
else
{
_detailPanel.tblDetails.show(new HashtableDataSet(root.getMappingProperties()));
}
}
else if (userObject instanceof MappedClassInfoTreeWrapper)
{
MappedClassInfoTreeWrapper mappedClassInfoTreeWrapper = (MappedClassInfoTreeWrapper) userObject;
MappedClassInfo mci = mappedClassInfoTreeWrapper.getMappedClassInfo();
DetailAttribute[] attributes = DetailAttribute.createDetailtAttributes(mci.getAttributes());
_detailPanel.tblDetails.show(new DetailAttributeDataSet(attributes));
}
else if(userObject instanceof PropertyInfoTreeWrapper)
{
PropertyInfoTreeWrapper propertyInfoTreeWrapper = (PropertyInfoTreeWrapper) userObject;
_detailPanel.tblDetails.show(new HashtableDataSet(propertyInfoTreeWrapper.getMappingProperties()));
}
}
catch (DataSetException e)
{
throw new RuntimeException(e);