Java Code Examples for com.intellij.AbstractBundle#message()

The following examples show how to use com.intellij.AbstractBundle#message() . 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: KeyPromoterBundle.java    From IntelliJ-Key-Promoter-X with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public static String message(@NotNull @PropertyKey(resourceBundle = "de.halirutan.keypromoterx.messages.KeyPromoterBundle") String key, @NotNull Object... params) {
  return AbstractBundle.message(getBundle(), key, params);
}
 
Example 2
Source File: PantsBundle.java    From intellij-pants-plugin with Apache License 2.0 4 votes vote down vote up
public static String message(@PropertyKey(resourceBundle = BUNDLE) String key, Object... params) {
  return AbstractBundle.message(getBundle(), key, params);
}
 
Example 3
Source File: LombokBundle.java    From lombok-intellij-plugin with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public static String message(@PropertyKey(resourceBundle = BUNDLE_NAME) String key, Object... params) {
  return AbstractBundle.message(BUNDLE, key, params);
}
 
Example 4
Source File: CrucibleBundle.java    From Crucible4IDEA with MIT License 4 votes vote down vote up
public static String message(@PropertyKey(resourceBundle = BUNDLE)String key, Object... params) {
    return AbstractBundle.message(getBundle(), key, params);
}