boolean empty = treeModel.getChildCount(treeModel.getRoot()) == 0;
return empty;
}
private ComponentPainter createValidProjectPainter() {
OverlayMessagePainter p = new OverlayMessagePainter(getString("Displayer.AllValid"));
Rectangle rowBounds = tree.getAdaptee().getRowBounds(0);
p.setLocation(new Point(rowBounds.x + 20, rowBounds.y + rowBounds.height + 16));
p.setTextStyle(TextStyles.AdminHintBold);
return p;
}