super.paintComponent(g);
}
public void customizeCellRenderer(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) {
TreeUtils.convertValueIfUserNode(value, new UserActionWithValue() {
public Object execute(User user) {
append(user.getDisplayName() + " ", SimpleTextAttributes.REGULAR_ATTRIBUTES);
append(user.getPresence().getDisplayText(), SimpleTextAttributes.GRAYED_ATTRIBUTES);
setIcon(user.getIcon());