menuForChangingUsers(options);
options.add(new UserActionAbstract("Save User Profile", ActionType.USER) {
@Override
public void execute(final Workspace workspace, final View view, final Location at) {
final Feedback feedbackManager = getFeedbackManager();
feedbackManager.showBusyState(ApplicationWorkspace.this);
getViewManager().saveOpenObjects();
feedbackManager.addMessage("Profile saved");
feedbackManager.showBusyState(ApplicationWorkspace.this);
}
});
}