public DetailAttribute(PropertyInfo attribute)
{
_attribute = attribute;
HibernatePropertyInfo hibernatePropertyInfo = attribute.getHibernatePropertyInfo();
if(0 < hibernatePropertyInfo.getColumnNames().length)
{
_columnNamesString = hibernatePropertyInfo.getColumnNames()[0];
for (int i = 1; i < hibernatePropertyInfo.getColumnNames().length; i++)
{
_columnNamesString += "," + hibernatePropertyInfo.getColumnNames()[i];
}
}
}