com.fathzer.soft.jclop.dropbox.swing.MessagePack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclop-dropbox2 Show documentation
Show all versions of jclop-dropbox2 Show documentation
A library to manage Dropbox service in JClop.
package com.fathzer.soft.jclop.dropbox.swing;
import java.util.Locale;
import com.fathzer.soft.ajlib.utilities.LocalizationData;
public class MessagePack {
public static final String DEFAULT_BUNDLE_NAME = "com.fathzer.soft.jclop.dropbox.swing.messages"; //$NON-NLS-1$
public static LocalizationData INSTANCE = new LocalizationData(DEFAULT_BUNDLE_NAME);
public static String getString(String key, Locale locale) {
return INSTANCE.getString(key, locale);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy