case CONTENT_INLINE:
if (which == Box.DUMP_RENDER) {
dumpBoxes(c, indent, getChildren(), which, result);
} else {
for (Iterator i = getInlineContent().iterator(); i.hasNext();) {
Styleable styleable = (Styleable) i.next();
if (styleable instanceof BlockBox) {
BlockBox b = (BlockBox) styleable;
result.append(b.dump(c, indent + " ", which));
if (result.charAt(result.length() - 1) == '\n') {
result.deleteCharAt(result.length() - 1);
}
} else {
result.append(indent + " ");
result.append(styleable.toString());
}
if (i.hasNext()) {
result.append('\n');
}
}