package org.intellij.lang.jflex.util;
import com.intellij.CommonBundle;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.PropertyKey;
import java.util.ResourceBundle;
public final class JFlexBundle {
@NonNls
private static final String BUNDLE_NAME = "org.intellij.lang.jflex.util.JFlexBundle";
private static final ResourceBundle BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
private JFlexBundle() {
}
public static String message(@PropertyKey(resourceBundle = BUNDLE_NAME)String key, Object... params) {
return CommonBundle.message(BUNDLE, key, params);
}
}
|