}
public String
stringify( Object o )
{
final ResultsForGetSet result = (ResultsForGetSet)o;
String str = "";
if ( mOptions.mIncludeObjectName )
{
str = "---" + result.getName().toString() + "---";
}
final boolean pretty = mOptions.mDisplayType == Options.DISPLAY_PRETTY;
final Stringifier attrS = new AttributeStringifier();
final Object [] attrList = result.getAttributes().toArray();
if ( pretty )
{
str = str + "\n";
}