* (non-Javadoc)
*
* @see org.eclipse.jst.pagedesigner.commands.range.DesignerToolBarAction#getCommand()
*/
protected Command getCommand() {
ParagraphApplyStyleCommand command = null;
if (getApplyingNode() != null) {
command = new ParagraphApplyStyleCommand(getViewer(),
getApplyingNode(), null, null);
} else {
command = new ParagraphApplyStyleCommand(getViewer(),
getExpectedTag(), null, null);
}
return command;
}