private void addMenuItemForAction(
final CssMenuItem parent,
final ObjectAction action,
final ActionPromptProvider actionPromptModalWindowProvider) {
final NotContributedFacet notContributed = action.getFacet(NotContributedFacet.class);
if (notContributed != null && notContributed.toActions()) {
// skip if is an action that has been annotated to not be contributed
return;
}
Builder subMenuItemBuilder = null;