* @see org.apache.directory.ldapstudio.dsmlv2.reponse.DsmlDecorator#toDsml(org.dom4j.Element)
*/
public Element toDsml( Element root )
{
Element element = root.addElement( "searchResultEntry" );
SearchResultEntry searchResultEntry = ( SearchResultEntry ) instance;
element.addAttribute( "dn", searchResultEntry.getObjectName().toString() );
Attributes attributes = searchResultEntry.getPartialAttributeList();
NamingEnumeration ne = attributes.getAll();
// Looping on Attributes Enumeration
while ( ne.hasMoreElements() )
{