* @return <code>true</code> if the menu is checked, <code>false</code> otherwise.
* @see MenuItem#getSelection()
* @since 1.2
*/
public boolean isChecked() {
return syncExec(new BoolResult() {
public Boolean run() {
return widget.getSelection();
}
});
}