Java Code Examples for com.intellij.idea.ActionsBundle#actionText()

The following examples show how to use com.intellij.idea.ActionsBundle#actionText() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DiffMergeSettingsAction.java    From consulo with Apache License 2.0 5 votes vote down vote up
private DiffMergeToggleAction(@Nonnull String actionId, @Nonnull DiffMergeEditorSetting setting, @Nonnull Collection<Editor> editors,
                              @Nonnull DiffMergeSettings settings) {
  super(ActionsBundle.actionText(actionId), ActionsBundle.actionDescription(actionId), null);
  mySetting = setting;
  myEditors = editors;
  mySettings = settings;
}
 
Example 2
Source File: EditBreakpointAction.java    From consulo with Apache License 2.0 4 votes vote down vote up
public ContextAction(GutterIconRenderer breakpointRenderer, Object breakpoint, DebuggerSupport debuggerSupport) {
  super(ActionsBundle.actionText("EditBreakpoint"));
  myRenderer = breakpointRenderer;
  myBreakpoint = breakpoint;
  myDebuggerSupport = debuggerSupport;
}
 
Example 3
Source File: ViewBreakpointsAction.java    From consulo with Apache License 2.0 4 votes vote down vote up
public ViewBreakpointsAction(){
  this(ActionsBundle.actionText(XDebuggerActions.VIEW_BREAKPOINTS), null);
}
 
Example 4
Source File: MoveChangesToAnotherListAction.java    From consulo with Apache License 2.0 4 votes vote down vote up
public MoveChangesToAnotherListAction() {
  super(ActionsBundle.actionText(IdeActions.MOVE_TO_ANOTHER_CHANGE_LIST),
        ActionsBundle.actionDescription(IdeActions.MOVE_TO_ANOTHER_CHANGE_LIST),
        AllIcons.Actions.MoveToAnotherChangelist);
}
 
Example 5
Source File: EditSourceInCommitAction.java    From consulo with Apache License 2.0 4 votes vote down vote up
public EditSourceInCommitAction(final DialogWrapper dialogWrapper) {
  super(ActionsBundle.actionText("EditSource"),
        ActionsBundle.actionDescription("EditSource"),
        AllIcons.Actions.EditSource);
  myDialogWrapper = dialogWrapper;
}
 
Example 6
Source File: ManageRecentProjectsAction.java    From consulo with Apache License 2.0 4 votes vote down vote up
public ManageRecentProjectsAction() {
  super(ActionsBundle.actionText("ManageRecentProjects"));
}