* @return body of the dialog.
*/
private JComponent buildBody()
{
String link = article.getLink() == null ? null : article.getLink().toString();
SelectableLabel tfLink = new SelectableLabel(link);
String title = article.getTitle();
SelectableLabel tfTitle = new SelectableLabel(title == null
? Strings.message("untitled") : title);
IFeed selectedFeed = article.getFeed();
JLabel lbGuide = new JLabel(GuidesUtils.getGuidesNames(selectedFeed.getParentGuides()));