Java Code Examples for com.intellij.openapi.actionSystem.ActionPlaces#MAIN_MENU

The following examples show how to use com.intellij.openapi.actionSystem.ActionPlaces#MAIN_MENU . 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: ReloadFlutterAppRetarget.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public ReloadFlutterAppRetarget() {
  super(ReloadFlutterApp.ID,
        ReloadFlutterApp.TEXT,
        ReloadFlutterApp.DESCRIPTION,
        ActionPlaces.MAIN_TOOLBAR,
        ActionPlaces.NAVIGATION_BAR_TOOLBAR,
        ActionPlaces.MAIN_MENU);
}
 
Example 2
Source File: RestartFlutterAppRetarget.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public RestartFlutterAppRetarget() {
  super(RestartFlutterApp.ID,
        RestartFlutterApp.TEXT,
        RestartFlutterApp.DESCRIPTION,
        ActionPlaces.MAIN_TOOLBAR,
        ActionPlaces.NAVIGATION_BAR_TOOLBAR,
        ActionPlaces.MAIN_MENU);
}
 
Example 3
Source File: RestartAllFlutterAppsRetarget.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public RestartAllFlutterAppsRetarget() {
  super(RestartAllFlutterApps.ID,
        RestartAllFlutterApps.TEXT,
        RestartAllFlutterApps.DESCRIPTION,
        ActionPlaces.MAIN_TOOLBAR,
        ActionPlaces.NAVIGATION_BAR_TOOLBAR,
        ActionPlaces.MAIN_MENU);
}
 
Example 4
Source File: ReloadAllFlutterAppsRetarget.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public ReloadAllFlutterAppsRetarget() {
  super(ReloadAllFlutterApps.ID,
        ReloadAllFlutterApps.TEXT,
        ReloadAllFlutterApps.DESCRIPTION,
        ActionPlaces.MAIN_TOOLBAR,
        ActionPlaces.NAVIGATION_BAR_TOOLBAR,
        ActionPlaces.MAIN_MENU);
}
 
Example 5
Source File: ReloadFlutterAppRetarget.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public ReloadFlutterAppRetarget() {
  super(ReloadFlutterApp.ID,
        ReloadFlutterApp.TEXT,
        ReloadFlutterApp.DESCRIPTION,
        ActionPlaces.MAIN_TOOLBAR,
        ActionPlaces.NAVIGATION_BAR_TOOLBAR,
        ActionPlaces.MAIN_MENU);
}
 
Example 6
Source File: RestartFlutterAppRetarget.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public RestartFlutterAppRetarget() {
  super(RestartFlutterApp.ID,
        RestartFlutterApp.TEXT,
        RestartFlutterApp.DESCRIPTION,
        ActionPlaces.MAIN_TOOLBAR,
        ActionPlaces.NAVIGATION_BAR_TOOLBAR,
        ActionPlaces.MAIN_MENU);
}
 
Example 7
Source File: RestartAllFlutterAppsRetarget.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public RestartAllFlutterAppsRetarget() {
  super(RestartAllFlutterApps.ID,
        RestartAllFlutterApps.TEXT,
        RestartAllFlutterApps.DESCRIPTION,
        ActionPlaces.MAIN_TOOLBAR,
        ActionPlaces.NAVIGATION_BAR_TOOLBAR,
        ActionPlaces.MAIN_MENU);
}
 
Example 8
Source File: ReloadAllFlutterAppsRetarget.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public ReloadAllFlutterAppsRetarget() {
  super(ReloadAllFlutterApps.ID,
        ReloadAllFlutterApps.TEXT,
        ReloadAllFlutterApps.DESCRIPTION,
        ActionPlaces.MAIN_TOOLBAR,
        ActionPlaces.NAVIGATION_BAR_TOOLBAR,
        ActionPlaces.MAIN_MENU);
}