com.jidesoft.converter.Resource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
package com.jidesoft.converter;
import java.util.Locale;
import java.util.ResourceBundle;
class Resource {
static final String BASENAME = "com.jidesoft.converter.converter";
static final ResourceBundle RB = ResourceBundle.getBundle(BASENAME);
public static ResourceBundle getResourceBundle(Locale locale) {
return ResourceBundle.getBundle(BASENAME, locale);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy