/* Define Command For Each Label */
for (final ILabel label : labels) {
Command command = commandService.getCommand(LABEL_ACTION_PREFIX + label.getOrder());
command.define(NLS.bind(Messages.Controller_LABEL, label.getName()), NLS.bind(Messages.Controller_LABEL_MSG, label.getName()), commandService.getCategory(RSSOWL_KEYBINDING_CATEGORY));
command.setHandler(new LabelNewsHandler(label));
}
}