fileBgColor);
textChunks.append(text[0].getText(), attributes);
}
} else if (column == 2) {
for (int i = 1; i < text.length; i++) {
TextChunk textChunk = text[i];
final SimpleTextAttributes attrs = textChunk.getSimpleAttributesIgnoreBackground();
SimpleTextAttributes attributes =
isSelected ? new SimpleTextAttributes(bg, fg, fg, attrs.getStyle())
: deriveAttributesWithColor(attrs, fileBgColor);
textChunks.append(textChunk.getText(), attributes);
}
} else {
assert false : column;
}
}