package org.jetbrains.yaml; import com.intellij.CommonBundle; import com.intellij.reference.SoftReference; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.PropertyKey; import java.lang.ref.Reference; import java.util.ResourceBundle; /** * @author oleg */ public class YAMLBundle { public static String message(@NotNull @PropertyKey(resourceBundle = BUNDLE) String key, @NotNull Object... params) { return CommonBundle.message(getBundle(), key, params); } private static Reference<ResourceBundle> ourBundle; @NonNls private static final String BUNDLE = "messages.YAMLBundle"; private YAMLBundle() { } /* * This method added for jruby access */ public static String message(@PropertyKey(resourceBundle = BUNDLE) String key) { return CommonBundle.message(getBundle(), key); } private static ResourceBundle getBundle() { ResourceBundle bundle = SoftReference.dereference(ourBundle); if (bundle == null) { bundle = ResourceBundle.getBundle(BUNDLE); ourBundle = new SoftReference<>(bundle); } return bundle; } }