blob: e2ba266963b81f73f6b544717d7bb6314d29f9c4 [file] [log] [blame]
package x;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.PropertyKey;
import java.util.ResourceBundle;
/**
* Created by IntelliJ IDEA.
* User: cdr
* Date: Oct 9, 2006
* Time: 6:22:02 PM
* To change this template use File | Settings | File Templates.
*/
public class IBundle {
public static String message(@org.jetbrains.annotations.NotNull @PropertyKey(resourceBundle = BUNDLE) String key,
@org.jetbrains.annotations.NotNull Object... params) {
return "";
}
@NonNls
public static final String BUNDLE = "x.Bu";
private static final ResourceBundle ourBundle = ResourceBundle.getBundle(bundleClassName);
}