MBeanAttributeInfo attr = (MBeanAttributeInfo)o;
String result = attr.getName() + ":";
if ( attr.isReadable() )
result = result + "r";
if ( attr.isWritable() )
result = result + "w";
result = result + mOptions.mArrayDelimiter + getPresentationTypeString( attr.getType() );
if ( mOptions.mIncludeDescription )
{
result = result + ",\"" + attr.getDescription() + "\"";
}
return( result );