/*
* The MIT License (MIT)
*
* Copyright (c) 2015 hsz Jakub Chrzanowski <jakub@hsz.mobi>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package mobi.hsz.idea.vcswatch;
import com.intellij.CommonBundle;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.PropertyKey;
import java.util.ResourceBundle;
/**
* {@link ResourceBundle}/localization utils for the VCS Watch plugin.
*
* @author Jakub Chrzanowski <jakub@hsz.mobi>
* @since 0.1
*/
public class VcsWatchBundle {
/** Plugin name. */
@NonNls
public static final String PLUGIN_NAME = "VCS Watch";
/** The {@link ResourceBundle} path. */
@NonNls
private static final String BUNDLE_NAME = "messages.VcsWatchBundle";
/** The {@link ResourceBundle} instance. */
private static final ResourceBundle BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
/** {@link VcsWatchBundle} is a non-instantiable static class. */
private VcsWatchBundle() {
}
/**
* Loads a {@link String} from the {@link #BUNDLE} {@link ResourceBundle}.
*
* @param key the key of the resource
* @param params the optional parameters for the specific resource
* @return the {@link String} value or {@code null} if no resource found for the key
*/
public static String message(@PropertyKey(resourceBundle = BUNDLE_NAME) String key, Object... params) {
return CommonBundle.message(BUNDLE, key, params);
}
/**
* Loads a {@link String} from the {@link #BUNDLE} {@link java.util.ResourceBundle}.
*
* @param key the key of the resource
* @param defaultValue the default value that will be returned if there is nothing set
* @param params the optional parameters for the specific resource
* @return the {@link String} value or {@code null} if no resource found for the key
*/
public static String messageOrDefault(@PropertyKey(resourceBundle = BUNDLE_NAME) String key, String defaultValue, Object... params) {
return CommonBundle.messageOrDefault(BUNDLE, key, defaultValue, params);
}
}