public Component getTreeCellRendererComponent(JTree tree, Object value,
boolean selected, boolean expanded, boolean leaf, int row,
boolean hasFocus) {
FileNode fileNode = (FileNode) value;
HarvestStatus status = fileNode.getStatus();
File file = fileNode.getFile();
JLabel statusLabel = (JLabel) super.getTreeCellRendererComponent(tree,
value, selected, expanded, leaf, row, hasFocus);
Icon fileViewIcon = blank;