Codota Logo
ApplicationNamesInfo.getFullProductName
Code IndexAdd Codota to your IDE (free)

How to use
getFullProductName
method
in
com.intellij.openapi.application.ApplicationNamesInfo

Best Java code snippets using com.intellij.openapi.application.ApplicationNamesInfo.getFullProductName (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: groboclown/p4ic4idea

@NonNls
public static String applicationName() {
  return ApplicationNamesInfo.getInstance().getFullProductName();
}
origin: halirutan/Mathematica-IntelliJ-Plugin

params.put("App Full Name", namesInfo.getFullProductName());
params.put("App Version name", appInfo.getVersionName());
params.put("Is EAP", Boolean.toString(appInfo.isEAP()));
origin: GoogleCloudPlatform/google-cloud-intellij

@VisibleForTesting
static Map<String, String> buildKeyValuesMap(
  @NotNull ErrorBean error,
  @NotNull ApplicationNamesInfo intelliJAppNameInfo,
  @NotNull ApplicationInfoEx intelliJAppExtendedInfo,
  @NotNull Application application) {
 Map<String, String> params =
   ImmutableMap.<String, String>builder()
     // required parameters
     .put(ERROR_MESSAGE_KEY, nullToNone(error.getMessage()))
     .put(ERROR_STACKTRACE_KEY, nullToNone(error.getStackTrace()))
     // end or required parameters
     .put(ERROR_DESCRIPTION_KEY, nullToNone(error.getDescription()))
     .put(LAST_ACTION_KEY, nullToNone(error.getLastAction()))
     .put(OS_NAME_KEY, SystemProperties.getOsName())
     .put(JAVA_VERSION_KEY, SystemProperties.getJavaVersion())
     .put(JAVA_VM_VENDOR_KEY, SystemProperties.getJavaVmVendor())
     .put(APP_NAME_KEY, intelliJAppNameInfo.getFullProductName())
     .put(APP_CODE_KEY, intelliJAppExtendedInfo.getPackageCode())
     .put(APP_NAME_VERSION_KEY, intelliJAppExtendedInfo.getVersionName())
     .put(APP_EAP_KEY, Boolean.toString(intelliJAppExtendedInfo.isEAP()))
     .put(APP_INTERNAL_KEY, Boolean.toString(application.isInternal()))
     .put(APP_VERSION_MAJOR_KEY, intelliJAppExtendedInfo.getMajorVersion())
     .put(APP_VERSION_MINOR_KEY, intelliJAppExtendedInfo.getMinorVersion())
     .put(
       PLUGIN_VERSION,
       ServiceManager.getService(PluginInfoService.class).getPluginVersion())
     .build();
 return params;
}
origin: GoogleCloudPlatform/google-cloud-intellij

@Before
public void setUp() {
 error = new ErrorBean(new Throwable(TEST_MESSAGE), LAST_ACTION);
 when(mockAppNameInfo.getFullProductName()).thenReturn(FULL_PRODUCT_NAME);
 when(mockAppInfoEx.getPackageCode()).thenReturn(PACKAGE_CODE);
 when(mockAppInfoEx.getVersionName()).thenReturn(VERSION_NAME);
 when(mockAppInfoEx.getMajorVersion()).thenReturn(MAJOR_VERSION);
 when(mockAppInfoEx.getMinorVersion()).thenReturn(MINOR_VERSION);
 when(pluginInfoService.getPluginVersion()).thenReturn(PLUGIN_VERSION);
}
origin: GoogleCloudPlatform/google-cloud-intellij

public DisablePluginWarningDialog(
  @NotNull PluginId pluginId, @NotNull Component parentComponent) {
 super(parentComponent, false);
 this.pluginId = pluginId;
 IdeaPluginDescriptor plugin = PluginManager.getPlugin(pluginId);
 isRestartCapable = ApplicationManager.getApplication().isRestartCapable();
 promptLabel.setText(
   GoogleCloudCoreMessageBundle.message(
     "error.dialog.disable.plugin.prompt", plugin.getName()));
 restartLabel.setText(
   GoogleCloudCoreMessageBundle.message(
     isRestartCapable
       ? "error.dialog.disable.plugin.restart"
       : "error.dialog.disable.plugin.norestart",
     ApplicationNamesInfo.getInstance().getFullProductName()));
 setTitle(GoogleCloudCoreMessageBundle.message("error.dialog.disable.plugin.title"));
 init();
}
origin: intellij-dlanguage/intellij-dlanguage

params.put("App Full Name", applicationNamesInfo.getFullProductName());
params.put("Is EAP", Boolean.toString(appInfo.isEAP()));
params.put("App Build", appInfo.getBuild().asString());
com.intellij.openapi.applicationApplicationNamesInfogetFullProductName

Popular methods of ApplicationNamesInfo

  • getInstance
  • getProductName

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getExternalFilesDir (Context)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • InputStreamReader (java.io)
    An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Hashtable (java.util)
    Hashtable is a synchronized implementation of Map. All optional operations are supported.Neither key
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now