JFlexBundle.java :  » IntelliJ » idea-jflex » org » intellij » lang » jflex » util » Java Open Source

Java Open Source » IntelliJ » idea jflex 
idea jflex » org » intellij » lang » jflex » util » JFlexBundle.java
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);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.