label.setText(plugin.getName() + " (" + plugin.getVersion() + ")");
label.setIcon(Icons.PLUGIN);
}
else if (pValue instanceof GoalNode) {
final GoalNode node = (GoalNode) pValue;
final Goal goal = node.getUserObject();
label.setText(goal.getName());
label.setIcon(Icons.GOAL);
}
}
return c;