String nextTab = currentTab + formatting.getTabulator();
returning.append(nextTab);
if (i > 0) {
returning.append(", ");
}
SSDObject attribute = (SSDObject) attributes.elementAt(i);
returning.append(this.toString(attribute, attribute.getIdentifier(), nextTab, formatting));
}
}
returning.append(currentTab);
returning.append("}" + formatting.getNewLine());
} else if (object instanceof SSDObjectArray) {