* @return the actions this plugin provides for the given program or
* <code>null</code> if the plugin does not provide this feature.
*/
public final ActionMenu getContextMenuActions(Program program) {
try {
ActionMenu menu = doGetContextMenuActions(program);
if (menu != null) {
return new ActionMenuProxy(this, menu);
} else {
return null;